Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump docker/build-push-action from 5 to 6 #15

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
12 changes: 6 additions & 6 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
uses: docker/setup-buildx-action@v3

- name: Build and export python image to docker for testing
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
file: Dockerfile_qfo_python
Expand All @@ -91,7 +91,7 @@ jobs:
docker run --rm -i ${{ env.TEST_TAG_PYTHON }} python --version

- name: Build and export darwin image to docker for testing
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
file: Dockerfile_qfo_darwin
Expand All @@ -106,7 +106,7 @@ jobs:
ls -l output/

- name: Build and export fas_benchmark image to docker for testing
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
file: Dockerfile_qfo_fas
Expand All @@ -125,7 +125,7 @@ jobs:
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}

- name: Build and push
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
file: Dockerfile_qfo_python
Expand All @@ -135,7 +135,7 @@ jobs:
labels: ${{ steps.meta_python.outputs.labels }}

- name: Build and push darwin
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
file: Dockerfile_qfo_darwin
Expand All @@ -145,7 +145,7 @@ jobs:
labels: ${{ steps.meta_darwin.outputs.labels }}

- name: Build and push fas
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
file: Dockerfile_qfo_fas
Expand Down
Loading