Skip to content

Commit

Permalink
CI: (deps): Bump docker/build-push-action from 6.9.0 to 6.10.0
Browse files Browse the repository at this point in the history
Bumps [docker/build-push-action](https://github.com/docker/build-push-action) from 6.9.0 to 6.10.0.
- [Release notes](https://github.com/docker/build-push-action/releases)
- [Commits](docker/build-push-action@4f58ea7...48aba3b)

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

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Dec 1, 2024
1 parent 7dc181a commit aaa07d8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,15 +105,15 @@ jobs:
df -h
- name: Build and load local docker image for PRs or Not Tags
uses: docker/build-push-action@4f58ea79222b3b9dc2c8bbdd6debcef730109a75
uses: docker/build-push-action@48aba3b46d1b1fec4febb7c5d0c644b249a11355
if: github.event_name == 'pull_request' || !startsWith(github.ref, 'refs/tags/')
with:
context: .
load: true
tags: ${{ env.IMAGE_NAME}}:${{ env.TAG}}

- name: Build and load local docker image for Not PRs and Tags
uses: docker/build-push-action@4f58ea79222b3b9dc2c8bbdd6debcef730109a75
uses: docker/build-push-action@48aba3b46d1b1fec4febb7c5d0c644b249a11355
if: github.event_name != 'pull_request' && startsWith(github.ref, 'refs/tags/')
with:
context: .
Expand Down Expand Up @@ -172,7 +172,7 @@ jobs:
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Build and push - for Not PRs and Not Tags
uses: docker/build-push-action@4f58ea79222b3b9dc2c8bbdd6debcef730109a75
uses: docker/build-push-action@48aba3b46d1b1fec4febb7c5d0c644b249a11355
if: github.event_name != 'pull_request' && !startsWith(github.ref, 'refs/tags/')
with:
context: .
Expand All @@ -182,7 +182,7 @@ jobs:
labels: ${{ steps.meta.outputs.labels }}

- name: Build and push - for Not PRs and Tags
uses: docker/build-push-action@4f58ea79222b3b9dc2c8bbdd6debcef730109a75
uses: docker/build-push-action@48aba3b46d1b1fec4febb7c5d0c644b249a11355
if: github.event_name != 'pull_request' && startsWith(github.ref, 'refs/tags/')
with:
context: .
Expand Down

0 comments on commit aaa07d8

Please sign in to comment.