Skip to content

Commit

Permalink
build(deps): 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 and mrueg committed Mar 18, 2024
1 parent 1811ae8 commit ef10568
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ jobs:
id: extract_tag

- name: Build and push - New Push
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
if: ${{ startsWith(github.ref, 'refs/tags/v') != true && github.event_name != 'pull_request' }}
with:
context: .
Expand All @@ -131,7 +131,7 @@ jobs:
tags: cloudnativelabs/kube-router-git:${{ steps.extract_branch.outputs.branch }}

- name: Build and push - New PR
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
if: github.event_name == 'pull_request'
with:
context: .
Expand All @@ -145,7 +145,7 @@ jobs:

# Tagging a release candidate, don't update latest
- name: Build and push - New Tag (Release Candidate)
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
if: ${{ startsWith(github.ref, 'refs/tags/v') && contains(github.ref, '-rc') }}
with:
context: .
Expand All @@ -164,7 +164,7 @@ jobs:
# Tagging a proper release, update latest
- name: Build and push - New Tag
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
if: ${{ startsWith(github.ref, 'refs/tags/v') && ! contains(github.ref, '-rc') }}
with:
context: .
Expand Down

0 comments on commit ef10568

Please sign in to comment.