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 19084fd commit a59a324
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:

# See issue with multi-arch build + load : https://github.com/docker/buildx/issues/59
- name: Build images (multi-architecture)
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
file: ./Dockerfile
Expand All @@ -46,7 +46,7 @@ jobs:
tags: ghusta/postgres-world-db:ci_${{ steps.now.outputs.timestamp }}

- name: Build image for latest postgres
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
file: ./Dockerfile
Expand All @@ -60,7 +60,7 @@ jobs:
tags: ghusta/postgres-world-db:ci_${{ steps.now.outputs.timestamp }}-latest

- name: Build image for latest alpine
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
file: ./Dockerfile
Expand All @@ -75,7 +75,7 @@ jobs:

# See : https://github.com/djimenezc/docker-multi-arch/commit/abf1ccfc0c37d4b9cbdce5a96b6fb5d48903e6a8
- name: Load only one architecture
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
file: ./Dockerfile
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docker-publish-on-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
# https://docs.docker.com/build/ci/github-actions/multi-platform/
- name: Build and push Docker images (multi-architecture)
id: build-and-push
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
build-args: |
Expand All @@ -72,7 +72,7 @@ jobs:

- name: Build and push Docker image for latest alpine variant
id: build-and-push-alpine
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
if: ${{ env.BUILD_PUSH_ALPINE == '1' }}
with:
context: .
Expand Down

0 comments on commit a59a324

Please sign in to comment.