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

workflows: bump docker/build-push-action from 5 to 6 #8973

Merged
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/build-legacy-branch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:

- name: Build the legacy x86_64 debug image
if: matrix.arch == 'amd64'
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
file: ./Dockerfile.x86_64.debug
context: .
Expand All @@ -102,7 +102,7 @@ jobs:
raw,${{ matrix.suffix }}-${{ inputs.ref }}

- name: Build the legacy ${{ matrix.arch }} image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
file: ./Dockerfile.${{ matrix.suffix }}
context: .
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/call-build-images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ jobs:

- name: Build the production images
id: build_push
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
file: ./dockerfiles/Dockerfile
context: .
Expand All @@ -141,7 +141,7 @@ jobs:

- name: Build the debug multi-arch images
id: debug_build_push
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
file: ./dockerfiles/Dockerfile
context: .
Expand Down Expand Up @@ -314,7 +314,7 @@ jobs:
docker push ${{ inputs.registry }}/${{ inputs.image }}:windows-${{ matrix.windows-base-version }}-${{ inputs.version }}

# We cannot use this action as it requires privileged mode
# uses: docker/build-push-action@v5
# uses: docker/build-push-action@v6
# with:
# file: ./dockerfiles/Dockerfile.windows
# context: .
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/call-integration-image-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
raw,${{ inputs.image-tag }}

- name: Build the AMD64 image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
file: ./dockerfiles/Dockerfile
context: .
Expand All @@ -83,7 +83,7 @@ jobs:
raw,${{ inputs.image-tag }}-debug

- name: Build the AMD64 debug image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
file: ./dockerfiles/Dockerfile
context: .
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-compile-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
uses: docker/setup-buildx-action@v3

- name: Attempt to build current source for CentOS 7
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
file: ./dockerfiles/Dockerfile.centos7
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr-image-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:

- name: Build the multi-arch images
id: build
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
file: ./dockerfiles/Dockerfile
context: .
Expand All @@ -55,7 +55,7 @@ jobs:
shell: bash

- name: Build the debug multi-arch images
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
file: ./dockerfiles/Dockerfile
context: .
Expand Down
Loading