Skip to content

Commit

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

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

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored Oct 1, 2023
1 parent f587e7d commit 177f188
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/angular.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ jobs:
password: ${{ secrets.DOCKER_PASSWORD }} # Password or personal access token used to log in to a Docker registry. If not set then no login will occur.

- name: Push to DockerHub
uses: docker/build-push-action@v4 # https://github.com/docker/build-push-action
uses: docker/build-push-action@v5 # https://github.com/docker/build-push-action
if: github.ref == 'refs/heads/main' # this is how to skip only specific steps if not main
with:
context: ./angular
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ jobs:
# check https://stackoverflow.com/a/71438011/4292075

- name: Push to GitHub Container Registry
uses: docker/build-push-action@v4 # https://github.com/docker/build-push-action
uses: docker/build-push-action@v5 # https://github.com/docker/build-push-action
with:
context: ./go
file: ./go/Dockerfile
Expand All @@ -138,7 +138,7 @@ jobs:
RELEASE_VERSION: ${{ env.RELEASE_VERSION }}
- name: Push to DockerHub
uses: docker/build-push-action@v4 # https://github.com/docker/build-push-action
uses: docker/build-push-action@v5 # https://github.com/docker/build-push-action
with:
context: ./go
file: ./go/Dockerfile
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/kotlin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ jobs:

# GitHub Action to build and push Docker images including multistage builds
- name: Push to DockerHub
uses: docker/build-push-action@v4 # https://github.com/docker/build-push-action
uses: docker/build-push-action@v5 # https://github.com/docker/build-push-action
if: github.ref == 'refs/heads/main' # this is how to skip only specific steps if not main
with:
context: ./kotlin
Expand Down

0 comments on commit 177f188

Please sign in to comment.