Skip to content

Commit 320bb5b

Browse files
Update GitHub actions upload/download artifact (#46169)
Co-authored-by: Renovate Bot <[email protected]>
1 parent 5566755 commit 320bb5b

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

.github/workflows/build-docker-monorepo.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ jobs:
134134
touch "$TEMP/digests/${DIGEST#sha256:}"
135135
136136
- name: Upload digest
137-
uses: actions/upload-artifact@v4
137+
uses: actions/upload-artifact@v5
138138
with:
139139
name: digests-linux-${{ matrix.platform }}
140140
path: ${{ runner.temp }}/digests/*
@@ -152,7 +152,7 @@ jobs:
152152

153153
steps:
154154
- name: Download digests
155-
uses: actions/download-artifact@v5
155+
uses: actions/download-artifact@v6
156156
with:
157157
path: ${{ runner.temp }}/digests
158158
pattern: digests-*

.github/workflows/build-docker.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ jobs:
135135
touch "$TEMP/digests/${DIGEST#sha256:}"
136136
137137
- name: Upload digest
138-
uses: actions/upload-artifact@v4
138+
uses: actions/upload-artifact@v5
139139
with:
140140
name: digests-linux-${{ matrix.platform }}
141141
path: ${{ runner.temp }}/digests/*
@@ -153,7 +153,7 @@ jobs:
153153

154154
steps:
155155
- name: Download digests
156-
uses: actions/download-artifact@v5
156+
uses: actions/download-artifact@v6
157157
with:
158158
path: ${{ runner.temp }}/digests
159159
pattern: digests-*

.github/workflows/build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ jobs:
149149
run: tar --owner=0 --group=0 --xz -cvvf build.tar.xz -C "$BUILD_BASE" --transform 's,^\.,build,' .
150150

151151
- name: Store build as artifact
152-
uses: actions/upload-artifact@v4
152+
uses: actions/upload-artifact@v5
153153
with:
154154
name: jetpack-build
155155
path: build.tar.xz
@@ -160,7 +160,7 @@ jobs:
160160

161161
- name: Store plugins.tsv as artifact
162162
if: steps.plugins.outputs.any == 'true'
163-
uses: actions/upload-artifact@v4
163+
uses: actions/upload-artifact@v5
164164
with:
165165
name: plugins.tsv
166166
path: ${{ env.BUILD_BASE }}/plugins.tsv
@@ -191,7 +191,7 @@ jobs:
191191
path: monorepo
192192

193193
- name: Download build artifact
194-
uses: actions/download-artifact@v5
194+
uses: actions/download-artifact@v6
195195
with:
196196
name: jetpack-build
197197
- name: Extract build archive
@@ -257,7 +257,7 @@ jobs:
257257
echo "any-built=$ANY_BUILT" >> "$GITHUB_OUTPUT"
258258
259259
- name: Create plugins artifact
260-
uses: actions/upload-artifact@v4
260+
uses: actions/upload-artifact@v5
261261
if: steps.prepare.outputs.any-built == 'true'
262262
with:
263263
name: plugins
@@ -288,7 +288,7 @@ jobs:
288288
timeout-minutes: 1 # 2025-11-06: Successful runs seem to take a few seconds
289289

290290
- name: Download build artifact
291-
uses: actions/download-artifact@v5
291+
uses: actions/download-artifact@v6
292292
with:
293293
name: jetpack-build
294294
timeout-minutes: 2 # 2025-11-06: Successful runs normally take a few seconds

.github/workflows/e2e-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ jobs:
314314
- name: Upload test artifacts
315315
if: ${{ always() }}
316316
continue-on-error: true
317-
uses: actions/upload-artifact@v4
317+
uses: actions/upload-artifact@v5
318318
with:
319319
name: test-output-${{ matrix.project }}
320320
path: ${{ matrix.path }}/output
@@ -398,7 +398,7 @@ jobs:
398398
working-directory: ./projects/github-actions/test-results-to-slack
399399

400400
- name: Download test artifacts
401-
uses: actions/download-artifact@v5
401+
uses: actions/download-artifact@v6
402402
with:
403403
path: test-output
404404

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ jobs:
309309
- name: Upload artifacts
310310
id: upload-artifacts
311311
if: always() && steps.check-artifacts.outputs.any == 'true'
312-
uses: actions/upload-artifact@v4
312+
uses: actions/upload-artifact@v5
313313
with:
314314
name: ${{ matrix.artifact }}
315315
path: artifacts
@@ -337,7 +337,7 @@ jobs:
337337
uses: ./.github/actions/tool-setup
338338

339339
- name: Download coverage artifact
340-
uses: actions/download-artifact@v5
340+
uses: actions/download-artifact@v6
341341
with:
342342
name: 'Code coverage'
343343
path: coverage

0 commit comments

Comments
 (0)