Skip to content

Commit

Permalink
CI: (deps): Bump docker/build-push-action from 6.5.0 to 6.9.0 (#201)
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] authored Oct 1, 2024
1 parent 503e336 commit 0c4d62d
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@5176d81f87c23d6fc96624dfdbcd9f3830bbe445
uses: docker/build-push-action@4f58ea79222b3b9dc2c8bbdd6debcef730109a75
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@5176d81f87c23d6fc96624dfdbcd9f3830bbe445
uses: docker/build-push-action@4f58ea79222b3b9dc2c8bbdd6debcef730109a75
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@5176d81f87c23d6fc96624dfdbcd9f3830bbe445
uses: docker/build-push-action@4f58ea79222b3b9dc2c8bbdd6debcef730109a75
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@5176d81f87c23d6fc96624dfdbcd9f3830bbe445
uses: docker/build-push-action@4f58ea79222b3b9dc2c8bbdd6debcef730109a75
if: github.event_name != 'pull_request' && startsWith(github.ref, 'refs/tags/')
with:
context: .
Expand Down

0 comments on commit 0c4d62d

Please sign in to comment.