Skip to content
This repository has been archived by the owner on Jul 1, 2024. It is now read-only.

chore(deps-dev): bump openai from 4.51.0 to 4.52.0 #1034

chore(deps-dev): bump openai from 4.51.0 to 4.52.0

chore(deps-dev): bump openai from 4.51.0 to 4.52.0 #1034

Workflow file for this run

name: Docker
on:
pull_request:
merge_group:
env:
PR_NUMBER: ${{ github.event.number }}
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build the api-db-migration image
uses: docker/build-push-action@v5
with:
push: false
load: true
file: ./Dockerfile
tags: api-db-migration:PR-${{ env.PR_NUMBER }}
- name: Test for node in the api-db-migration image
run:
docker run --entrypoint='' --rm api-db-migration:PR-${{ env.PR_NUMBER
}} node --version