From 26bf67c7a3fe1f24c02b5caf6a692e8aed75dfe8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 4 Jan 2024 10:58:41 -0500 Subject: [PATCH] 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](https://github.com/actions/upload-artifact/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .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 a6ec09a6620061..994e9c49aeacf4 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -102,7 +102,7 @@ jobs: - name: Run Build Without Logging run: scripts/run_in_build_env.sh "ninja -C ./out" - name: Uploading core files - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ failure() && !env.ACT }} with: name: crash-core-linux-gcc-debug @@ -120,7 +120,7 @@ jobs: # If re-enabling, some subset of this should be picked # # - name: Uploading objdir for debugging - # uses: actions/upload-artifact@v3 + # uses: actions/upload-artifact@v4 # if: ${{ failure() && !env.ACT }} # with: # name: crash-objdir-linux-gcc-debug @@ -255,7 +255,7 @@ jobs: language: cpp - name: Uploading core files - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ failure() && !env.ACT }} with: name: crash-core-linux @@ -268,7 +268,7 @@ jobs: # If re-enabling, some subset of this should be picked # # - name: Uploading objdir for debugging - # uses: actions/upload-artifact@v3 + # uses: actions/upload-artifact@v4 # if: ${{ failure() && !env.ACT }} # with: # name: crash-objdir-linux @@ -429,7 +429,7 @@ jobs: check \ " - name: Uploading diagnostic logs - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ failure() && !env.ACT }} with: name: crash-log-darwin diff --git a/.github/workflows/cirque.yaml b/.github/workflows/cirque.yaml index 1f54d1fb6b5233..976f0265989911 100644 --- a/.github/workflows/cirque.yaml +++ b/.github/workflows/cirque.yaml @@ -126,7 +126,7 @@ jobs: - name: Uploading Binaries - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 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 74d2f7e32deb0f..d4db7d1ce0f289 100644 --- a/.github/workflows/darwin-tests.yaml +++ b/.github/workflows/darwin-tests.yaml @@ -131,7 +131,7 @@ jobs: --ota-candidate-file /tmp/otaCandidateJSON \ " - name: Uploading core files - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ failure() && !env.ACT }} with: name: crash-core-darwin-${{ matrix.build_variant }} @@ -139,19 +139,19 @@ jobs: # Cores are big; don't hold on to them too long. retention-days: 5 - name: Uploading diagnostic logs - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 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@v3 + uses: actions/upload-artifact@v4 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@v3 + uses: actions/upload-artifact@v4 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 50ab4e0142eed5..55526db1ccfc4b 100644 --- a/.github/workflows/darwin.yaml +++ b/.github/workflows/darwin.yaml @@ -124,7 +124,7 @@ jobs: xcodebuild -target "MatterTvCastingBridge" -sdk iphoneos working-directory: examples/tv-casting-app/darwin/MatterTvCastingBridge - name: Uploading log files - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ failure() && !env.ACT }} with: name: darwin-framework-test-logs diff --git a/.github/workflows/examples-nrfconnect.yaml b/.github/workflows/examples-nrfconnect.yaml index c8495aad304a60..8489cac472c84d 100644 --- a/.github/workflows/examples-nrfconnect.yaml +++ b/.github/workflows/examples-nrfconnect.yaml @@ -195,7 +195,7 @@ jobs: run: | scripts/run_in_build_env.sh "./scripts/build/build_examples.py --target nrf-native-posix-64-tests build" - name: Uploading Failed Test Logs - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ failure() && !env.ACT }} with: name: test-log diff --git a/.github/workflows/fuzzing-build.yaml b/.github/workflows/fuzzing-build.yaml index 687ff3c9a5e404..70d22b95265959 100644 --- a/.github/workflows/fuzzing-build.yaml +++ b/.github/workflows/fuzzing-build.yaml @@ -62,7 +62,7 @@ jobs: --copy-artifacts-to objdir-clone \ " - name: Uploading binaries - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ !env.ACT }} with: name: objdir-linux @@ -100,7 +100,7 @@ jobs: --copy-artifacts-to objdir-clone \ " - name: Uploading binaries - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ !env.ACT }} with: name: crash-darwin diff --git a/.github/workflows/java-tests.yaml b/.github/workflows/java-tests.yaml index 72df162e06b3b9..4941487156fcdb 100644 --- a/.github/workflows/java-tests.yaml +++ b/.github/workflows/java-tests.yaml @@ -278,7 +278,7 @@ jobs: --factoryreset \ ' - name: Uploading core files - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ failure() && !env.ACT }} with: name: crash-core-linux-java-controller @@ -286,7 +286,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@v3 + uses: actions/upload-artifact@v4 if: ${{ failure() && !env.ACT }} with: name: crash-objdir-linux-java-controller diff --git a/.github/workflows/qemu.yaml b/.github/workflows/qemu.yaml index a45534cc2f15bb..e18bfd1d6bc4ea 100644 --- a/.github/workflows/qemu.yaml +++ b/.github/workflows/qemu.yaml @@ -63,7 +63,7 @@ jobs: --verbose \ --file-image-list ./out/esp32-qemu-tests/test_images.txt - name: Uploading Logs - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 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 5c23b5be881e73..85e4381fbb341c 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@v3 + uses: actions/upload-artifact@v4 with: name: workflow-fail-summary path: | diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index a9c04f6d8f5a6b..a476dac7cd7009 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -283,7 +283,7 @@ jobs: --lit-icd-app ./out/linux-x64-lit-icd-${BUILD_VARIANT}/lit-icd-app \ " - name: Uploading core files - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ failure() && !env.ACT }} with: name: crash-core-linux-${{ matrix.build_variant }}${{ matrix.chip_tool }} @@ -291,7 +291,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@v3 + uses: actions/upload-artifact@v4 if: ${{ failure() && !env.ACT }} with: name: crash-objdir-linux-${{ matrix.build_variant }}${{ matrix.chip_tool }} @@ -386,7 +386,7 @@ jobs: " - name: Uploading core files - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ failure() && !env.ACT }} with: name: crash-core-darwin-${{ matrix.build_variant }}${{ matrix.chip_tool }} @@ -394,13 +394,13 @@ jobs: # Cores are big; don't hold on to them too long. retention-days: 5 - name: Uploading diagnostic logs - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 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@v3 + uses: actions/upload-artifact@v4 if: ${{ failure() && !env.ACT }} with: name: crash-objdir-darwin-${{ matrix.build_variant }}${{ matrix.chip_tool }} @@ -492,7 +492,7 @@ jobs: 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"' scripts/run_in_python_env.sh out/venv './scripts/tests/TestTimeSyncTrustedTimeSourceRunner.py' - name: Uploading core files - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ failure() && !env.ACT }} with: name: crash-core-linux-python-repl @@ -500,7 +500,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@v3 + uses: actions/upload-artifact@v4 if: ${{ failure() && !env.ACT }} with: name: crash-objdir-linux-python-repl @@ -553,7 +553,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 --factoryreset --app-args "--discriminator 3840 --interface-id -1" --script-args "-t 3600 --disable-test ClusterObjectTests.TestTimedRequestTimeout"' - name: Uploading core files - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ failure() && !env.ACT }} with: name: crash-core-darwin-python-repl @@ -561,20 +561,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@v3 + uses: actions/upload-artifact@v4 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@v3 + uses: actions/upload-artifact@v4 if: ${{ failure() && !env.ACT }} with: name: crash-log-darwin-python-repl path: ~/Library/Logs/DiagnosticReports/ - name: Uploading objdir for debugging - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ failure() && !env.ACT }} with: name: crash-objdir-darwin-python-repl