Skip to content

Commit

Permalink
build(deps): bump docker/build-push-action from 5.4.0 to 6.7.0
Browse files Browse the repository at this point in the history
Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 5.4.0 to 6.7.0.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@v5.4.0...v6.7.0)

---
updated-dependencies:
- dependency-name: docker/build-push-action
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored Sep 16, 2024
1 parent d45c09b commit 2f73d1d
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
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@v5.4.0
uses: docker/build-push-action@v6.7.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@v5.4.0
uses: docker/build-push-action@v6.7.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@v5.4.0
uses: docker/build-push-action@v6.7.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@v5.4.0
uses: docker/build-push-action@v6.7.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@v5.4.0
uses: docker/build-push-action@v6.7.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@v5.4.0
uses: docker/build-push-action@v6.7.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@v5.4.0
uses: docker/build-push-action@v6.7.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@v5.4.0
uses: docker/build-push-action@v6.7.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@v5.4.0
uses: docker/build-push-action@v6.7.0
id: docker_build_release
with:
context: ${{ matrix.context }}
Expand Down

0 comments on commit 2f73d1d

Please sign in to comment.