Skip to content

Commit

Permalink
Merge pull request #3602 from spidernet-io/dependabot/github_actions/…
Browse files Browse the repository at this point in the history
…docker/build-push-action-5.4.0

build(deps): bump docker/build-push-action from 5.3.0 to 5.4.0
  • Loading branch information
weizhoublue committed Jun 18, 2024
2 parents d1dac37 + 4e70f34 commit b6e4746
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.3.0
uses: docker/build-push-action@v5.4.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 @@ -131,7 +131,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.3.0
uses: docker/build-push-action@v5.4.0
with:
context: /tmp/.cache/${{ matrix.name }}
file: ./images/cache/Dockerfile
Expand All @@ -144,7 +144,7 @@ jobs:
# build normal image
- name: CI Build ${{ matrix.name }}
if: ${{ github.event_name != 'pull_request_target' }}
uses: docker/build-push-action@v5.3.0
uses: docker/build-push-action@v5.4.0
continue-on-error: false
id: docker_build_ci_master
with:
Expand All @@ -167,7 +167,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.3.0
uses: docker/build-push-action@v5.4.0
continue-on-error: false
id: docker_build_ci_master_detect_race_condition
with:
Expand Down Expand Up @@ -199,7 +199,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.3.0
uses: docker/build-push-action@v5.4.0
continue-on-error: false
id: docker_build_ci_pr
with:
Expand All @@ -218,7 +218,7 @@ jobs:
- name: CI race detection Build ${{ matrix.name }}
if: ${{ github.event_name == 'pull_request_target' }}
uses: docker/build-push-action@v5.3.0
uses: docker/build-push-action@v5.4.0
continue-on-error: false
id: docker_build_ci_pr_detect_race_condition
with:
Expand Down Expand Up @@ -264,7 +264,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.3.0
uses: docker/build-push-action@v5.4.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 @@ -187,7 +187,7 @@ jobs:

- name: Release build ${{ env.IMAGE_NAME }}
if: ${{ env.exists == 'false' }}
uses: docker/build-push-action@v5.3.0
uses: docker/build-push-action@v5.4.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.3.0
uses: docker/build-push-action@v5.4.0
id: docker_build_release
with:
context: ${{ matrix.context }}
Expand Down

0 comments on commit b6e4746

Please sign in to comment.