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

Bump docker/build-push-action from 5 to 6 in the gh-actions group #476

Closed
Closed
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
10 changes: 5 additions & 5 deletions .github/workflows/check-addon.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ jobs:

- name: 💿 Build Addon - armhf
if: ${{ steps.information.outputs.armhf == 'true' }}
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: ${{ matrix.addon }}
push: false
Expand All @@ -148,7 +148,7 @@ jobs:

- name: 💿 Build Addon - armv7
if: ${{ steps.information.outputs.armv7 == 'true' }}
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: ${{ matrix.addon }}
push: false
Expand All @@ -163,7 +163,7 @@ jobs:

- name: 💿 Build Addon - aarch64
if: ${{ steps.information.outputs.aarch64 == 'true' }}
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: ${{ matrix.addon }}
push: false
Expand All @@ -178,7 +178,7 @@ jobs:

- name: 💿 Build Addon - amd64
if: ${{ steps.information.outputs.amd64 == 'true' }}
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: ${{ matrix.addon }}
push: false
Expand All @@ -193,7 +193,7 @@ jobs:

- name: 💿 Build Addon - i386
if: ${{ steps.information.outputs.i386 == 'true' }}
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: ${{ matrix.addon }}
push: false
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/main-addon-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ jobs:

- name: 💿 Build Addon - armhf
if: ${{ steps.information.outputs.armhf == 'true' }}
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: ${{ matrix.addon }}
push: false
Expand All @@ -133,7 +133,7 @@ jobs:

- name: 💿 Build Addon - armv7
if: ${{ steps.information.outputs.armv7 == 'true' }}
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: ${{ matrix.addon }}
push: false
Expand All @@ -148,7 +148,7 @@ jobs:

- name: 💿 Build Addon - aarch64
if: ${{ steps.information.outputs.aarch64 == 'true' }}
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: ${{ matrix.addon }}
push: false
Expand All @@ -163,7 +163,7 @@ jobs:

- name: 💿 Build Addon - amd64
if: ${{ steps.information.outputs.amd64 == 'true' }}
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: ${{ matrix.addon }}
push: false
Expand All @@ -178,7 +178,7 @@ jobs:

- name: 💿 Build Addon - i386
if: ${{ steps.information.outputs.i386 == 'true' }}
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: ${{ matrix.addon }}
push: false
Expand Down
Loading