Skip to content

Commit

Permalink
Update docker/build-push-action action to v6
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] committed Jun 17, 2024
1 parent 8ba376a commit 1913250
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,14 @@ jobs:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Push image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
push: true
tags: |
ghcr.io/${{ github.repository }}:${{ github.sha }}
- name: Tag & Push branch image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
push: true
Expand All @@ -50,7 +50,7 @@ jobs:
ghcr.io/${{ github.repository }}:${{ github.ref_name }}
- name: Tag & Push latest image
if: github.ref_name == 'main'
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
push: true
Expand All @@ -73,15 +73,15 @@ jobs:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Push image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
file: docs.Dockerfile
push: true
tags: |
ghcr.io/${{ github.repository }}-docs:${{ github.sha }}
- name: Tag & Push branch image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
file: docs.Dockerfile
Expand All @@ -91,7 +91,7 @@ jobs:
ghcr.io/${{ github.repository }}-docs:${{ github.ref_name }}
- name: Tag & Push latest image
if: github.ref_name == 'main'
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
file: docs.Dockerfile
Expand Down

0 comments on commit 1913250

Please sign in to comment.