Skip to content

Commit

Permalink
Fix: GHA workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
dooman87 committed Jul 9, 2024
1 parent 8894c0d commit 68807fe
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
docker-password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build Debian Bullseye Image
id: docker_build_bullseye
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
context: .
file: ./Dockerfile.bullseye
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:
- name: Push Debian Bullseye image
id: docker_push_bullseye
if: ${{ github.event_name == 'release' }}
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
context: .
file: ./Dockerfile.bullseye
Expand All @@ -81,7 +81,7 @@ jobs:
docker-password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build Debian Bookworm Image
id: docker_build_bookworm
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
context: .
file: ./Dockerfile.bookworm
Expand Down Expand Up @@ -117,7 +117,7 @@ jobs:
- name: Push Debian Bookworm image
id: docker_push_bookworm
if: ${{ github.event_name == 'release' }}
uses: docker/build-push-action@v4
uses: docker/build-push-action@v5
with:
context: .
file: ./Dockerfile.bookworm
Expand Down

0 comments on commit 68807fe

Please sign in to comment.