Skip to content

Commit

Permalink
Bump docker/build-push-action from 5 to 6
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 to 6.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@v5...v6)

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

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Jun 17, 2024
1 parent 7ca353f commit b30ca49
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
echo "$(make -s log | grep TAG)" >> "$GITHUB_ENV"
- name: Build container operator image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
build-args: ARCH=amd64
Expand All @@ -34,7 +34,7 @@ jobs:
TAG=${{ env.TAG }}
- name: Build container config-daemon image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
build-args: ARCH=amd64
Expand All @@ -46,7 +46,7 @@ jobs:
TAG=${{ env.TAG }}
- name: Build container webhook image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
build-args: ARCH=amd64
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
echo "$(make -s log | grep TAG)" >> "$GITHUB_ENV"
- name: Build container operator image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
build-args: ARCH=arm64
Expand All @@ -102,7 +102,7 @@ jobs:
TAG=${{ env.TAG }}
- name: Build container config-daemon image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
build-args: ARCH=arm64
Expand All @@ -114,7 +114,7 @@ jobs:
TAG=${{ env.TAG }}
- name: Build container webhook image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
build-args: ARCH=arm64
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/image-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
password: ${{ env.DOCKER_PASSWORD }}

- name: Build operator container image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
push: true
Expand All @@ -54,7 +54,7 @@ jobs:
TAG=${{ env.TAG }}
- name: Build config-daemon container image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
push: true
Expand All @@ -65,7 +65,7 @@ jobs:
TAG=${{ env.TAG }}
- name: Build webhook container image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
push: true
Expand Down

0 comments on commit b30ca49

Please sign in to comment.