Skip to content

Commit

Permalink
Bump docker/build-push-action from 3 to 5
Browse files Browse the repository at this point in the history
Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 3 to 5.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@v3...v5)

---
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 Sep 12, 2023
1 parent d4f781c commit 2bbb435
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-test-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
TAGS="${{ env.REGISTRY }}/${{ env.REPOSITORY }}:latest"
echo "tags=$TAGS" >> $GITHUB_OUTPUT
- name: Push Image to repo
uses: docker/build-push-action@v3
uses: docker/build-push-action@v5
with:
context: test/app
push: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
TAGS="${REPOSITORY}:${TAG}"
echo "tags=$TAGS" >> $GITHUB_OUTPUT
- name: Push Atlas Operator to Registry
uses: docker/build-push-action@v3
uses: docker/build-push-action@v5
with:
context: .
push: true
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/rebuild-released-images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:
run: |
go mod download
- name: Build and push operator to the DockerHub (daily-tag)
uses: docker/build-push-action@v3
uses: docker/build-push-action@v5
with:
context: .
build-args: VERSION=${{ matrix.version }}
Expand All @@ -95,7 +95,7 @@ jobs:
cache-to: type=gha,mode=max
push: true
- name: Build and push operator to the DockerHub (release-tag)
uses: docker/build-push-action@v3
uses: docker/build-push-action@v5
with:
context: .
build-args: VERSION=${{ matrix.version }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-post-install-hook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
TAGS="${REPOSITORY}:${TAG}"
echo "tags=$TAGS" >> $GITHUB_OUTPUT
- name: Push Post Install Hook To Registry
uses: docker/build-push-action@v3
uses: docker/build-push-action@v5
with:
push: true
context: .
Expand Down

0 comments on commit 2bbb435

Please sign in to comment.