Skip to content
This repository has been archived by the owner on Aug 16, 2024. It is now read-only.

Commit

Permalink
chore(deps): update docker/build-push-action action to v6
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Jun 17, 2024
1 parent 90950f8 commit e38c1f5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/docker-builds.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:

- name: Manual Build/Push - amd64
if: ${{ github.event_name == 'workflow_dispatch' }}
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: src
push: true
Expand All @@ -56,7 +56,7 @@ jobs:
- name: Manual Build/Push - arm64
if: ${{ github.event_name == 'workflow_dispatch' }}
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: src
push: true
Expand All @@ -77,7 +77,7 @@ jobs:

- name: Tagged Build/Push - amd64
if: ${{ github.event_name != 'workflow_dispatch' }}
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: src
push: true
Expand All @@ -90,7 +90,7 @@ jobs:
- name: Tagged Build/Push - arm64
if: ${{ github.event_name != 'workflow_dispatch' }}
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: src
push: true
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/docker-nightly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
uses: docker/setup-buildx-action@v3

- name: Build Nightly amd64 image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: src
push: true
Expand All @@ -41,7 +41,7 @@ jobs:
tags: ${{ env.DOCKER_IMAGE_NAME }}:nightly-amd64

- name: Build Nightly arm64 image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: src
push: true
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
run: git checkout ${{ steps.most-recent-tag.outputs.tag }}

- name: Build Tagged amd64 image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: src
push: true
Expand All @@ -81,7 +81,7 @@ jobs:
tags: ${{ env.DOCKER_IMAGE_NAME }}:${{ steps.most-recent-tag.outputs.tag }}-amd64, ${{ env.DOCKER_IMAGE_NAME }}:latest-amd64

- name: Build Tagged arm64 image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: src
push: true
Expand Down

0 comments on commit e38c1f5

Please sign in to comment.