Skip to content

Commit 06a3579

Browse files
authored
Merge pull request #140 from spinframework/dependabot/github_actions/docker/build-push-action-6
chore(deps): bump docker/build-push-action from 5 to 6
2 parents 2901c34 + 001c9fe commit 06a3579

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

.github/workflows/action-docker-build-push.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,15 +48,15 @@ jobs:
4848
sudo systemctl restart docker
4949
5050
- name: Build and load (test run)
51-
uses: docker/build-push-action@v5
51+
uses: docker/build-push-action@v6
5252
if: ${{ inputs.test }}
5353
with:
5454
context: ${{ matrix.image.context }}
5555
load: true
5656
tags: containerd-shim-spin/${{ matrix.image.imageName }}:test
5757
platforms: wasi/wasm
5858
- name: Build and push
59-
uses: docker/build-push-action@v5
59+
uses: docker/build-push-action@v6
6060
if: ${{ !inputs.test }}
6161
with:
6262
push: true

.github/workflows/action-node-installer.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ jobs:
3636
- uses: actions/download-artifact@v6
3737
with:
3838
path: _artifacts
39+
pattern: "!*.dockerbuild"
3940

4041
- name: Set up QEMU
4142
uses: docker/setup-qemu-action@v3
@@ -123,6 +124,7 @@ jobs:
123124
- uses: actions/download-artifact@v6
124125
with:
125126
path: _artifacts
127+
pattern: "!*.dockerbuild"
126128

127129
- name: Set up QEMU
128130
uses: docker/setup-qemu-action@v3
@@ -145,7 +147,7 @@ jobs:
145147
password: ${{ secrets.GITHUB_TOKEN }}
146148

147149
- name: Build and push node-installer image
148-
uses: docker/build-push-action@v5
150+
uses: docker/build-push-action@v6
149151
with:
150152
push: true
151153
tags: |

.github/workflows/action-test.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ jobs:
1111
steps:
1212
- uses: actions/checkout@v5
1313
- uses: actions/download-artifact@v6
14+
with:
15+
pattern: "!*.dockerbuild"
1416
- uses: azure/setup-kubectl@v4
1517
- uses: fermyon/actions/spin/setup@v1
1618
with:

.github/workflows/release.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ jobs:
4040
- uses: actions/download-artifact@v6
4141
with:
4242
path: _artifacts
43+
pattern: "!*.dockerbuild"
4344

4445
- name: Copy release workload assets into _dist
4546
if: startsWith(github.ref, 'refs/tags/v')
@@ -82,7 +83,7 @@ jobs:
8283
for f in ./_artifacts/*/*-aarch64.tar.gz; do tar -xf $f --directory ./deployments/k3d/.tmp/linux/arm64; done
8384
8485
- name: Build and push k3d shim image
85-
uses: docker/build-push-action@v5
86+
uses: docker/build-push-action@v6
8687
with:
8788
push: true
8889
tags: |

0 commit comments

Comments
 (0)