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

build(deps): bump docker/build-push-action from 6.11.0 to 6.12.0 #4571

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
2 changes: 1 addition & 1 deletion .github/workflows/build-image-base.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ jobs:

- name: Release build ${{ env.IMAGE_NAME }}
if: ${{ env.exists == 'false' }}
uses: docker/build-push-action@v6.11.0
uses: docker/build-push-action@v6.12.0
continue-on-error: false
id: docker_build_release
with:
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/build-image-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ jobs:

# Import GitHub's cache build to docker cache
- name: Copy ${{ matrix.name }} Golang cache to docker cache
uses: docker/build-push-action@v6.11.0
uses: docker/build-push-action@v6.12.0
with:
context: /tmp/.cache/${{ matrix.name }}
file: ./images/cache/Dockerfile
Expand All @@ -148,7 +148,7 @@ jobs:
# build normal image
- name: CI Build ${{ matrix.name }}
if: ${{ github.event_name != 'pull_request_target' }}
uses: docker/build-push-action@v6.11.0
uses: docker/build-push-action@v6.12.0
continue-on-error: false
id: docker_build_ci_master
with:
Expand All @@ -171,7 +171,7 @@ jobs:
# build debug image who turn on race and deadlock detection
- name: CI race detection Build ${{ matrix.name }}
if: ${{ github.event_name != 'pull_request_target' }}
uses: docker/build-push-action@v6.11.0
uses: docker/build-push-action@v6.12.0
continue-on-error: false
id: docker_build_ci_master_detect_race_condition
with:
Expand Down Expand Up @@ -203,7 +203,7 @@ jobs:
# =========== trigger by PR updates , build 2 images
- name: CI Build ${{ matrix.name }}
if: ${{ github.event_name == 'pull_request_target' }}
uses: docker/build-push-action@v6.11.0
uses: docker/build-push-action@v6.12.0
continue-on-error: false
id: docker_build_ci_pr
with:
Expand All @@ -222,7 +222,7 @@ jobs:

- name: CI race detection Build ${{ matrix.name }}
if: ${{ github.event_name == 'pull_request_target' }}
uses: docker/build-push-action@v6.11.0
uses: docker/build-push-action@v6.12.0
continue-on-error: false
id: docker_build_ci_pr_detect_race_condition
with:
Expand Down Expand Up @@ -268,7 +268,7 @@ jobs:
# Store docker's golang's cache build locally only on the main branch
- name: Store ${{ matrix.name }} Golang cache build locally
if: ${{ github.event_name != 'pull_request_target' && steps.cache.outputs.cache-hit != 'true' }}
uses: docker/build-push-action@v6.11.0
uses: docker/build-push-action@v6.12.0
with:
context: .
file: ./images/cache/Dockerfile
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-image-plugins.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ jobs:
registry: ${{ env.ONLINE_REGISTER }}

- name: Release build ${{ env.IMAGE_NAME }}
uses: docker/build-push-action@v6.11.0
uses: docker/build-push-action@v6.12.0
continue-on-error: false
id: docker_build_release
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/call-release-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ jobs:
echo "committime=${GIT_COMMIT_TIME}" >> $GITHUB_ENV

- name: Build Image ${{ matrix.name }}
uses: docker/build-push-action@v6.11.0
uses: docker/build-push-action@v6.12.0
id: docker_build_release
with:
context: ${{ matrix.context }}
Expand Down
Loading