Skip to content

Commit 26bf67c

Browse files
Bump actions/upload-artifact from 3 to 4 (#31063)
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 3 to 4. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v3...v4) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent dc94c38 commit 26bf67c

10 files changed

+29
-29
lines changed

.github/workflows/build.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ jobs:
102102
- name: Run Build Without Logging
103103
run: scripts/run_in_build_env.sh "ninja -C ./out"
104104
- name: Uploading core files
105-
uses: actions/upload-artifact@v3
105+
uses: actions/upload-artifact@v4
106106
if: ${{ failure() && !env.ACT }}
107107
with:
108108
name: crash-core-linux-gcc-debug
@@ -120,7 +120,7 @@ jobs:
120120
# If re-enabling, some subset of this should be picked
121121
#
122122
# - name: Uploading objdir for debugging
123-
# uses: actions/upload-artifact@v3
123+
# uses: actions/upload-artifact@v4
124124
# if: ${{ failure() && !env.ACT }}
125125
# with:
126126
# name: crash-objdir-linux-gcc-debug
@@ -255,7 +255,7 @@ jobs:
255255
language: cpp
256256

257257
- name: Uploading core files
258-
uses: actions/upload-artifact@v3
258+
uses: actions/upload-artifact@v4
259259
if: ${{ failure() && !env.ACT }}
260260
with:
261261
name: crash-core-linux
@@ -268,7 +268,7 @@ jobs:
268268
# If re-enabling, some subset of this should be picked
269269
#
270270
# - name: Uploading objdir for debugging
271-
# uses: actions/upload-artifact@v3
271+
# uses: actions/upload-artifact@v4
272272
# if: ${{ failure() && !env.ACT }}
273273
# with:
274274
# name: crash-objdir-linux
@@ -429,7 +429,7 @@ jobs:
429429
check \
430430
"
431431
- name: Uploading diagnostic logs
432-
uses: actions/upload-artifact@v3
432+
uses: actions/upload-artifact@v4
433433
if: ${{ failure() && !env.ACT }}
434434
with:
435435
name: crash-log-darwin

.github/workflows/cirque.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ jobs:
126126
127127
128128
- name: Uploading Binaries
129-
uses: actions/upload-artifact@v3
129+
uses: actions/upload-artifact@v4
130130
if: ${{ always() && !env.ACT }}
131131
with:
132132
name: cirque_log-${{steps.outsuffix.outputs.value}}-logs

.github/workflows/darwin-tests.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -131,27 +131,27 @@ jobs:
131131
--ota-candidate-file /tmp/otaCandidateJSON \
132132
"
133133
- name: Uploading core files
134-
uses: actions/upload-artifact@v3
134+
uses: actions/upload-artifact@v4
135135
if: ${{ failure() && !env.ACT }}
136136
with:
137137
name: crash-core-darwin-${{ matrix.build_variant }}
138138
path: /cores/
139139
# Cores are big; don't hold on to them too long.
140140
retention-days: 5
141141
- name: Uploading diagnostic logs
142-
uses: actions/upload-artifact@v3
142+
uses: actions/upload-artifact@v4
143143
if: ${{ failure() && !env.ACT }}
144144
with:
145145
name: crash-log-darwin-${{ matrix.build_variant }}
146146
path: ~/Library/Logs/DiagnosticReports/
147147
- name: Uploading framework build log
148-
uses: actions/upload-artifact@v3
148+
uses: actions/upload-artifact@v4
149149
if: ${{ failure() && !env.ACT }}
150150
with:
151151
name: framework-build-log-darwin-${BUILD_VARIANT_FRAMEWORK_TOOL}
152152
path: out/darwin-x64-darwin-framework-tool-${BUILD_VARIANT_FRAMEWORK_TOOL}/darwin_framework_build.log
153153
- name: Uploading objdir for debugging
154-
uses: actions/upload-artifact@v3
154+
uses: actions/upload-artifact@v4
155155
if: ${{ failure() && !env.ACT }}
156156
with:
157157
name: crash-objdir-darwin-${{ matrix.build_variant }}

.github/workflows/darwin.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ jobs:
124124
xcodebuild -target "MatterTvCastingBridge" -sdk iphoneos
125125
working-directory: examples/tv-casting-app/darwin/MatterTvCastingBridge
126126
- name: Uploading log files
127-
uses: actions/upload-artifact@v3
127+
uses: actions/upload-artifact@v4
128128
if: ${{ failure() && !env.ACT }}
129129
with:
130130
name: darwin-framework-test-logs

.github/workflows/examples-nrfconnect.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ jobs:
195195
run: |
196196
scripts/run_in_build_env.sh "./scripts/build/build_examples.py --target nrf-native-posix-64-tests build"
197197
- name: Uploading Failed Test Logs
198-
uses: actions/upload-artifact@v3
198+
uses: actions/upload-artifact@v4
199199
if: ${{ failure() && !env.ACT }}
200200
with:
201201
name: test-log

.github/workflows/fuzzing-build.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
--copy-artifacts-to objdir-clone \
6363
"
6464
- name: Uploading binaries
65-
uses: actions/upload-artifact@v3
65+
uses: actions/upload-artifact@v4
6666
if: ${{ !env.ACT }}
6767
with:
6868
name: objdir-linux
@@ -100,7 +100,7 @@ jobs:
100100
--copy-artifacts-to objdir-clone \
101101
"
102102
- name: Uploading binaries
103-
uses: actions/upload-artifact@v3
103+
uses: actions/upload-artifact@v4
104104
if: ${{ !env.ACT }}
105105
with:
106106
name: crash-darwin

.github/workflows/java-tests.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -278,15 +278,15 @@ jobs:
278278
--factoryreset \
279279
'
280280
- name: Uploading core files
281-
uses: actions/upload-artifact@v3
281+
uses: actions/upload-artifact@v4
282282
if: ${{ failure() && !env.ACT }}
283283
with:
284284
name: crash-core-linux-java-controller
285285
path: /tmp/cores/
286286
# Cores are big; don't hold on to them too long.
287287
retention-days: 5
288288
- name: Uploading objdir for debugging
289-
uses: actions/upload-artifact@v3
289+
uses: actions/upload-artifact@v4
290290
if: ${{ failure() && !env.ACT }}
291291
with:
292292
name: crash-objdir-linux-java-controller

.github/workflows/qemu.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
--verbose \
6464
--file-image-list ./out/esp32-qemu-tests/test_images.txt
6565
- name: Uploading Logs
66-
uses: actions/upload-artifact@v3
66+
uses: actions/upload-artifact@v4
6767
if: ${{ !env.ACT }}
6868
with:
6969
name: qemu-esp32-logs

.github/workflows/recent_fail_summary.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
github-token: ${{ secrets.GITHUB_TOKEN }}
4242
branch: daily_pass_percentage
4343
- name: Upload Logs
44-
uses: actions/upload-artifact@v3
44+
uses: actions/upload-artifact@v4
4545
with:
4646
name: workflow-fail-summary
4747
path: |

.github/workflows/tests.yaml

+11-11
Original file line numberDiff line numberDiff line change
@@ -283,15 +283,15 @@ jobs:
283283
--lit-icd-app ./out/linux-x64-lit-icd-${BUILD_VARIANT}/lit-icd-app \
284284
"
285285
- name: Uploading core files
286-
uses: actions/upload-artifact@v3
286+
uses: actions/upload-artifact@v4
287287
if: ${{ failure() && !env.ACT }}
288288
with:
289289
name: crash-core-linux-${{ matrix.build_variant }}${{ matrix.chip_tool }}
290290
path: /tmp/cores/
291291
# Cores are big; don't hold on to them too long.
292292
retention-days: 5
293293
- name: Uploading objdir for debugging
294-
uses: actions/upload-artifact@v3
294+
uses: actions/upload-artifact@v4
295295
if: ${{ failure() && !env.ACT }}
296296
with:
297297
name: crash-objdir-linux-${{ matrix.build_variant }}${{ matrix.chip_tool }}
@@ -386,21 +386,21 @@ jobs:
386386
"
387387
388388
- name: Uploading core files
389-
uses: actions/upload-artifact@v3
389+
uses: actions/upload-artifact@v4
390390
if: ${{ failure() && !env.ACT }}
391391
with:
392392
name: crash-core-darwin-${{ matrix.build_variant }}${{ matrix.chip_tool }}
393393
path: /cores/
394394
# Cores are big; don't hold on to them too long.
395395
retention-days: 5
396396
- name: Uploading diagnostic logs
397-
uses: actions/upload-artifact@v3
397+
uses: actions/upload-artifact@v4
398398
if: ${{ failure() && !env.ACT }}
399399
with:
400400
name: crash-log-darwin-${{ matrix.build_variant }}${{ matrix.chip_tool }}
401401
path: ~/Library/Logs/DiagnosticReports/
402402
- name: Uploading objdir for debugging
403-
uses: actions/upload-artifact@v3
403+
uses: actions/upload-artifact@v4
404404
if: ${{ failure() && !env.ACT }}
405405
with:
406406
name: crash-objdir-darwin-${{ matrix.build_variant }}${{ matrix.chip_tool }}
@@ -492,15 +492,15 @@ jobs:
492492
scripts/run_in_python_env.sh out/venv './scripts/tests/run_python_test.py --app out/linux-x64-lock-ipv6only-no-ble-no-wifi-tsan-clang-test/chip-lock-app --factoryreset --app-args "--discriminator 1234 --KVS kvs1 --trace-to json:out/trace_data/app-{SCRIPT_BASE_NAME}.json" --script "src/python_testing/TC_DRLK_2_12.py" --script-args "--storage-path admin_storage.json --commissioning-method on-network --discriminator 1234 --passcode 20202021 --PICS src/app/tests/suites/certification/ci-pics-values --trace-to json:out/trace_data/test-{SCRIPT_BASE_NAME}.json --trace-to perfetto:out/trace_data/test-{SCRIPT_BASE_NAME}.perfetto"'
493493
scripts/run_in_python_env.sh out/venv './scripts/tests/TestTimeSyncTrustedTimeSourceRunner.py'
494494
- name: Uploading core files
495-
uses: actions/upload-artifact@v3
495+
uses: actions/upload-artifact@v4
496496
if: ${{ failure() && !env.ACT }}
497497
with:
498498
name: crash-core-linux-python-repl
499499
path: /tmp/cores/
500500
# Cores are big; don't hold on to them too long.
501501
retention-days: 5
502502
- name: Uploading objdir for debugging
503-
uses: actions/upload-artifact@v3
503+
uses: actions/upload-artifact@v4
504504
if: ${{ failure() && !env.ACT }}
505505
with:
506506
name: crash-objdir-linux-python-repl
@@ -553,28 +553,28 @@ jobs:
553553
run: |
554554
scripts/run_in_python_env.sh out/venv './scripts/tests/run_python_test.py --app out/darwin-x64-all-clusters-no-ble-no-wifi-tsan-clang-test/chip-all-clusters-app --factoryreset --app-args "--discriminator 3840 --interface-id -1" --script-args "-t 3600 --disable-test ClusterObjectTests.TestTimedRequestTimeout"'
555555
- name: Uploading core files
556-
uses: actions/upload-artifact@v3
556+
uses: actions/upload-artifact@v4
557557
if: ${{ failure() && !env.ACT }}
558558
with:
559559
name: crash-core-darwin-python-repl
560560
path: /cores/
561561
# Cores are big; don't hold on to them too long.
562562
retention-days: 5
563563
- name: Uploading traces on failure
564-
uses: actions/upload-artifact@v3
564+
uses: actions/upload-artifact@v4
565565
if: ${{ failure() && !env.ACT }}
566566
with:
567567
name: trace-data-python-repl
568568
path: out/trace_data/
569569
retention-days: 5
570570
- name: Uploading diagnostic logs
571-
uses: actions/upload-artifact@v3
571+
uses: actions/upload-artifact@v4
572572
if: ${{ failure() && !env.ACT }}
573573
with:
574574
name: crash-log-darwin-python-repl
575575
path: ~/Library/Logs/DiagnosticReports/
576576
- name: Uploading objdir for debugging
577-
uses: actions/upload-artifact@v3
577+
uses: actions/upload-artifact@v4
578578
if: ${{ failure() && !env.ACT }}
579579
with:
580580
name: crash-objdir-darwin-python-repl

0 commit comments

Comments
 (0)