From 25023ea88290f4a0609013352934d56ba738a73b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 May 2026 12:48:51 +0000 Subject: [PATCH] Bump actions/upload-artifact from 4 to 7 Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 7. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v7) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yaml | 10 +++++----- .github/workflows/cirque.yaml | 2 +- .github/workflows/darwin-tests.yaml | 8 ++++---- .github/workflows/darwin.yaml | 2 +- .github/workflows/examples-nrfconnect.yaml | 2 +- .github/workflows/fuzzing-build.yaml | 4 ++-- .github/workflows/java-tests.yaml | 4 ++-- .github/workflows/qemu.yaml | 2 +- .github/workflows/recent_fail_summary.yaml | 2 +- .github/workflows/tests.yaml | 22 +++++++++++----------- 10 files changed, 29 insertions(+), 29 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 926897fc7028f8..f7d44f77498206 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -120,7 +120,7 @@ jobs: if: inputs.run-codeql != true run: scripts/run_in_build_env.sh "ninja -C ./out" - name: Uploading core files - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 if: ${{ failure() && !env.ACT }} with: name: crash-core-linux-gcc-debug @@ -138,7 +138,7 @@ jobs: # If re-enabling, some subset of this should be picked # # - name: Uploading objdir for debugging - # uses: actions/upload-artifact@v4 + # uses: actions/upload-artifact@v7 # if: ${{ failure() && !env.ACT }} # with: # name: crash-objdir-linux-gcc-debug @@ -303,7 +303,7 @@ jobs: # language: cpp - name: Uploading core files - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 if: ${{ failure() && !env.ACT }} with: name: crash-core-linux @@ -316,7 +316,7 @@ jobs: # If re-enabling, some subset of this should be picked # # - name: Uploading objdir for debugging - # uses: actions/upload-artifact@v4 + # uses: actions/upload-artifact@v7 # if: ${{ failure() && !env.ACT }} # with: # name: crash-objdir-linux @@ -494,7 +494,7 @@ jobs: check \ " - name: Uploading diagnostic logs - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 if: ${{ failure() && !env.ACT }} with: name: crash-log-darwin diff --git a/.github/workflows/cirque.yaml b/.github/workflows/cirque.yaml index e36599a47c9a5a..866969d9d037c1 100644 --- a/.github/workflows/cirque.yaml +++ b/.github/workflows/cirque.yaml @@ -130,7 +130,7 @@ jobs: - name: Uploading Binaries - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 if: ${{ always() && !env.ACT }} with: name: cirque_log-${{steps.outsuffix.outputs.value}}-logs diff --git a/.github/workflows/darwin-tests.yaml b/.github/workflows/darwin-tests.yaml index 8eeb41790875fb..2e8dbf8b1d6518 100644 --- a/.github/workflows/darwin-tests.yaml +++ b/.github/workflows/darwin-tests.yaml @@ -136,7 +136,7 @@ jobs: --ota-candidate-file /tmp/otaCandidateJSON \ " - name: Uploading core files - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 if: ${{ failure() && !env.ACT }} with: name: crash-core-darwin-${{ matrix.build_variant }} @@ -144,19 +144,19 @@ jobs: # Cores are big; don't hold on to them too long. retention-days: 5 - name: Uploading diagnostic logs - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 if: ${{ failure() && !env.ACT }} with: name: crash-log-darwin-${{ matrix.build_variant }} path: ~/Library/Logs/DiagnosticReports/ - name: Uploading framework build log - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 if: ${{ failure() && !env.ACT }} with: name: framework-build-log-darwin-${BUILD_VARIANT_FRAMEWORK_TOOL} path: out/darwin-x64-darwin-framework-tool-${BUILD_VARIANT_FRAMEWORK_TOOL}/darwin_framework_build.log - name: Uploading objdir for debugging - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 if: ${{ failure() && !env.ACT }} with: name: crash-objdir-darwin-${{ matrix.build_variant }} diff --git a/.github/workflows/darwin.yaml b/.github/workflows/darwin.yaml index fd2ca6210a4a31..af7f2c1d5fd36a 100644 --- a/.github/workflows/darwin.yaml +++ b/.github/workflows/darwin.yaml @@ -124,7 +124,7 @@ jobs: mkdir -p /tmp/darwin/framework-tests find ~/Library/Developer/Xcode/DerivedData /Library/Logs/DiagnosticReports -name '*.ips' -print0 | xargs -0 -J % cp % /tmp/darwin/framework-tests - name: Uploading log files - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 if: failure() && !env.ACT with: name: darwin-framework-test-logs-${{ matrix.options.flavor }} diff --git a/.github/workflows/examples-nrfconnect.yaml b/.github/workflows/examples-nrfconnect.yaml index 6e2951ad46e981..6eb07fec2e1a7e 100644 --- a/.github/workflows/examples-nrfconnect.yaml +++ b/.github/workflows/examples-nrfconnect.yaml @@ -207,7 +207,7 @@ jobs: sed -i '151s/ //' /opt/NordicSemiconductor/nrfconnect/zephyr/cmake/linker/ld/target.cmake scripts/run_in_build_env.sh "./scripts/build/build_examples.py --target nrf-native-sim-tests build" - name: Uploading Failed Test Logs - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 if: ${{ failure() && !env.ACT }} with: name: test-log diff --git a/.github/workflows/fuzzing-build.yaml b/.github/workflows/fuzzing-build.yaml index f1ee4f67297243..6ac597240244ce 100644 --- a/.github/workflows/fuzzing-build.yaml +++ b/.github/workflows/fuzzing-build.yaml @@ -58,7 +58,7 @@ jobs: --copy-artifacts-to objdir-clone \ " - name: Uploading binaries - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 if: ${{ !env.ACT }} with: name: objdir-linux @@ -92,7 +92,7 @@ jobs: --copy-artifacts-to objdir-clone \ " - name: Uploading binaries - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 if: ${{ !env.ACT }} with: name: crash-darwin diff --git a/.github/workflows/java-tests.yaml b/.github/workflows/java-tests.yaml index 063db6996d6452..4deb22a1e0db56 100644 --- a/.github/workflows/java-tests.yaml +++ b/.github/workflows/java-tests.yaml @@ -351,7 +351,7 @@ jobs: --factoryreset \ ' - name: Uploading core files - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 if: ${{ failure() && !env.ACT }} with: name: crash-core-linux-java-controller @@ -359,7 +359,7 @@ jobs: # Cores are big; don't hold on to them too long. retention-days: 5 - name: Uploading objdir for debugging - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 if: ${{ failure() && !env.ACT }} with: name: crash-objdir-linux-java-controller diff --git a/.github/workflows/qemu.yaml b/.github/workflows/qemu.yaml index 02454e52c06910..fc72dbd6e90358 100644 --- a/.github/workflows/qemu.yaml +++ b/.github/workflows/qemu.yaml @@ -66,7 +66,7 @@ jobs: --verbose \ --file-image-list ./out/esp32-qemu-tests/test_images.txt - name: Uploading Logs - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 if: ${{ !env.ACT }} with: name: qemu-esp32-logs diff --git a/.github/workflows/recent_fail_summary.yaml b/.github/workflows/recent_fail_summary.yaml index 4fe4625a717aaa..39a0e82e2735b7 100644 --- a/.github/workflows/recent_fail_summary.yaml +++ b/.github/workflows/recent_fail_summary.yaml @@ -41,7 +41,7 @@ jobs: github-token: ${{ secrets.GITHUB_TOKEN }} branch: daily_pass_percentage - name: Upload Logs - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: workflow-fail-summary path: | diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 0316fe0e3cef44..aa687d523cdb32 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -339,7 +339,7 @@ jobs: --network-manager-app ./out/linux-x64-network-manager-${BUILD_VARIANT}/matter-network-manager-app \ " - name: Uploading core files - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 if: ${{ failure() && !env.ACT }} with: name: crash-core-linux-${{ matrix.build_variant }}${{ matrix.chip_tool }} @@ -347,7 +347,7 @@ jobs: # Cores are big; don't hold on to them too long. retention-days: 5 - name: Uploading objdir for debugging - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 if: ${{ failure() && !env.ACT }} with: name: crash-objdir-linux-${{ matrix.build_variant }}${{ matrix.chip_tool }} @@ -446,7 +446,7 @@ jobs: " - name: Uploading core files - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 if: ${{ failure() && !env.ACT }} with: name: crash-core-darwin-${{ matrix.build_variant }}${{ matrix.chip_tool }} @@ -454,13 +454,13 @@ jobs: # Cores are big; don't hold on to them too long. retention-days: 5 - name: Uploading diagnostic logs - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 if: ${{ failure() && !env.ACT }} with: name: crash-log-darwin-${{ matrix.build_variant }}${{ matrix.chip_tool }} path: ~/Library/Logs/DiagnosticReports/ - name: Uploading objdir for debugging - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 if: ${{ failure() && !env.ACT }} with: name: crash-objdir-darwin-${{ matrix.build_variant }}${{ matrix.chip_tool }} @@ -730,7 +730,7 @@ jobs: " - name: Uploading core files - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 if: ${{ failure() && !env.ACT }} with: name: crash-core-linux-python-repl @@ -738,7 +738,7 @@ jobs: # Cores are big; don't hold on to them too long. retention-days: 5 - name: Uploading objdir for debugging - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 if: ${{ failure() && !env.ACT }} with: name: crash-objdir-linux-python-repl @@ -790,7 +790,7 @@ jobs: run: | 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 --factory-reset --quiet --app-args "--discriminator 3840 --interface-id -1" --script-args "-t 3600 --disable-test ClusterObjectTests.TestTimedRequestTimeout"' - name: Uploading core files - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 if: ${{ failure() && !env.ACT }} with: name: crash-core-darwin-python-repl @@ -798,20 +798,20 @@ jobs: # Cores are big; don't hold on to them too long. retention-days: 5 - name: Uploading traces on failure - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 if: ${{ failure() && !env.ACT }} with: name: trace-data-python-repl path: out/trace_data/ retention-days: 5 - name: Uploading diagnostic logs - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 if: ${{ failure() && !env.ACT }} with: name: crash-log-darwin-python-repl path: ~/Library/Logs/DiagnosticReports/ - name: Uploading objdir for debugging - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 if: ${{ failure() && !env.ACT }} with: name: crash-objdir-darwin-python-repl