Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/docker-base.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
password: ${{ secrets.DOCKER_PASSWORD }}

- name: Build and push base image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v7
with:
context: .
file: dependency/Dockerfile/Dockerfile_base
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/docker-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
run: docker pull "${{ secrets.DOCKER_USERNAME }}/thuai9_base:base"

- name: Build and push server image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v7
with:
context: .
file: dependency/Dockerfile/Dockerfile_run_server
Expand All @@ -37,7 +37,7 @@ jobs:
cache-to: type=gha,mode=max,scope=run-server

- name: Build and push Python client image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v7
with:
context: .
file: dependency/Dockerfile/Dockerfile_run_client
Expand All @@ -49,7 +49,7 @@ jobs:
cache-to: type=gha,mode=max,scope=run-client

- name: Build and push C++ client image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v7
with:
context: .
file: dependency/Dockerfile/Dockerfile_cpp
Expand Down
Loading