Skip to content

Commit

Permalink
Merge pull request #53 from ghusta/dependabot/github_actions/docker/b…
Browse files Browse the repository at this point in the history
…uild-push-action-5

Bump docker/build-push-action from 4 to 5
  • Loading branch information
ghusta committed Sep 13, 2023
2 parents dca572b + cbb3030 commit 508301d
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@v4
uses: docker/build-push-action@v5
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@v4
uses: docker/build-push-action@v5
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@v4
uses: docker/build-push-action@v5
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@v4
uses: docker/build-push-action@v5
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@v4
uses: docker/build-push-action@v5
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@v4
uses: docker/build-push-action@v5
if: ${{ env.BUILD_PUSH_ALPINE == '1' }}
with:
context: .
Expand Down

0 comments on commit 508301d

Please sign in to comment.