Skip to content

Commit 7d15ef8

Browse files
committed
ci: update artifact actions to v4
Upgraded the artifact actions to version 4 and enabled the `merge-multiple` option to ensure better compatibility with our system.
1 parent c0e0c2d commit 7d15ef8

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/docker.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ jobs:
198198
-
199199
name: Upload builder metadata
200200
if: fromJson(needs.prepare.outputs.push)
201-
uses: actions/upload-artifact@v3
201+
uses: actions/upload-artifact@v4
202202
with:
203203
name: metadata-builder-${{ matrix.variant }}
204204
path: /tmp/metadata/builder/*
@@ -207,7 +207,7 @@ jobs:
207207
-
208208
name: Upload runner metadata
209209
if: fromJson(needs.prepare.outputs.push)
210-
uses: actions/upload-artifact@v3
210+
uses: actions/upload-artifact@v4
211211
with:
212212
name: metadata-runner-${{ matrix.variant }}
213213
path: /tmp/metadata/runner/*
@@ -237,10 +237,11 @@ jobs:
237237
steps:
238238
-
239239
name: Download metadata
240-
uses: actions/download-artifact@v3
240+
uses: actions/download-artifact@v4
241241
with:
242242
name: metadata-${{ matrix.target }}-${{ matrix.variant }}
243243
path: /tmp/metadata
244+
merge-multiple: true
244245
-
245246
name: Set up Docker Buildx
246247
uses: docker/setup-buildx-action@v3

0 commit comments

Comments
 (0)