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

chore(deps): update docker/build-push-action action to v6 #20

Merged
merged 1 commit into from
Jun 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading