diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index d0daa83fc2fd35..a13cf728c12334 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -79,7 +79,7 @@ jobs: timeout-minutes: 10 run: scripts/build/gn_bootstrap.sh - name: Uploading bootstrap logs - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ always() && !env.ACT }} with: name: bootstrap-logs @@ -119,7 +119,7 @@ jobs: timeout-minutes: 20 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 @@ -132,7 +132,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 @@ -196,7 +196,7 @@ jobs: timeout-minutes: 10 run: scripts/build/gn_bootstrap.sh - name: Uploading bootstrap logs - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ always() && !env.ACT }} with: name: bootstrap-logs @@ -289,7 +289,7 @@ jobs: ./scripts/run_in_build_env.sh \ "./scripts/build/build_examples.py --target linux-fake-tests build" - name: Uploading core files - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ failure() && !env.ACT }} with: name: crash-core-linux @@ -302,7 +302,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 @@ -415,7 +415,7 @@ jobs: timeout-minutes: 25 run: scripts/build/gn_bootstrap.sh - name: Uploading bootstrap logs - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ always() && !env.ACT }} with: name: bootstrap-logs @@ -466,7 +466,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 @@ -515,7 +515,7 @@ jobs: timeout-minutes: 10 run: scripts/build/gn_bootstrap.sh - name: Uploading bootstrap logs - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ always() && !env.ACT }} with: name: bootstrap-logs diff --git a/.github/workflows/cirque.yaml b/.github/workflows/cirque.yaml index ea5d4c3755c56d..09b62f1d5b5229 100644 --- a/.github/workflows/cirque.yaml +++ b/.github/workflows/cirque.yaml @@ -128,7 +128,7 @@ jobs: -- scripts/tests/cirque_tests.sh run_all_tests - 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 a0c8642d557d04..7bc0289f2f955d 100644 --- a/.github/workflows/darwin-tests.yaml +++ b/.github/workflows/darwin-tests.yaml @@ -78,7 +78,7 @@ jobs: timeout-minutes: 25 run: scripts/build/gn_bootstrap.sh - name: Uploading bootstrap logs - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ always() && !env.ACT }} with: name: bootstrap-logs-darwin-${{ matrix.build_variant }}${{ matrix.chip_tool }} @@ -122,7 +122,7 @@ jobs: --bridge-app ./out/darwin-x64-bridge-${BUILD_VARIANT}/chip-bridge-app \ " - 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 }} @@ -130,13 +130,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 }} diff --git a/.github/workflows/darwin.yaml b/.github/workflows/darwin.yaml index 5f054d177001bb..5819e654d6b528 100644 --- a/.github/workflows/darwin.yaml +++ b/.github/workflows/darwin.yaml @@ -58,7 +58,7 @@ jobs: timeout-minutes: 25 run: scripts/build/gn_bootstrap.sh - name: Uploading bootstrap logs - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ always() && !env.ACT }} with: name: bootstrap-logs @@ -142,7 +142,7 @@ jobs: xcodebuild test -target "Matter" -scheme "Matter Framework Tests" -sdk macosx OTHER_CFLAGS='${inherited} -Werror -Wconversion -Wno-incomplete-umbrella -Wno-unguarded-availability-new' > >(tee /tmp/darwin/framework-tests/darwin-tests.log) 2> >(tee /tmp/darwin/framework-tests/darwin-tests-err.log >&2) working-directory: src/darwin/Framework - 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-bouffalolab.yaml b/.github/workflows/examples-bouffalolab.yaml index 1760458c2b03ab..af6b35299a4726 100644 --- a/.github/workflows/examples-bouffalolab.yaml +++ b/.github/workflows/examples-bouffalolab.yaml @@ -69,7 +69,7 @@ jobs: timeout-minutes: 25 run: scripts/build/gn_bootstrap.sh - name: Uploading bootstrap logs - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ always() && !env.ACT }} with: name: bootstrap-logs @@ -124,7 +124,7 @@ jobs: run: rm -rf ./out - name: Uploading Size Reports - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ !env.ACT }} with: name: Size,BouffaloLab-Examples,${{ env.GH_EVENT_PR }},${{ env.GH_EVENT_HASH }},${{ env.GH_EVENT_PARENT }},${{ github.event_name }} diff --git a/.github/workflows/examples-cc13x2x7_26x2x7.yaml b/.github/workflows/examples-cc13x2x7_26x2x7.yaml index 254c4a041c8ccf..16e408a1041f5a 100644 --- a/.github/workflows/examples-cc13x2x7_26x2x7.yaml +++ b/.github/workflows/examples-cc13x2x7_26x2x7.yaml @@ -70,7 +70,7 @@ jobs: timeout-minutes: 25 run: scripts/build/gn_bootstrap.sh - name: Uploading bootstrap logs - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ always() && !env.ACT }} with: name: bootstrap-logs @@ -143,7 +143,7 @@ jobs: out/artifacts/cc13x2x7_26x2x7-shell/chip-LP_CC2652R7-shell-example.out \ /tmp/bloat_reports/ - name: Uploading Size Reports - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ !env.ACT }} with: name: Size,cc13x2x7_26x2x7-Examples,${{ env.GH_EVENT_PR }},${{ env.GH_EVENT_HASH }},${{ env.GH_EVENT_PARENT }},${{ github.event_name }} diff --git a/.github/workflows/examples-cc32xx.yaml b/.github/workflows/examples-cc32xx.yaml index fed502b34d7530..d8da94cbab0816 100644 --- a/.github/workflows/examples-cc32xx.yaml +++ b/.github/workflows/examples-cc32xx.yaml @@ -67,7 +67,7 @@ jobs: timeout-minutes: 25 run: scripts/build/gn_bootstrap.sh - name: Uploading bootstrap logs - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ always() && !env.ACT }} with: name: bootstrap-logs @@ -92,7 +92,7 @@ jobs: /tmp/bloat_reports/ - name: Uploading Size Reports - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ !env.ACT }} with: name: Size,cc32xx-Examples,${{ env.GH_EVENT_PR }},${{ env.GH_EVENT_HASH }},${{ env.GH_EVENT_PARENT }},${{ github.event_name }} diff --git a/.github/workflows/examples-efr32.yaml b/.github/workflows/examples-efr32.yaml index 084226e14510a0..05b75f5604711d 100644 --- a/.github/workflows/examples-efr32.yaml +++ b/.github/workflows/examples-efr32.yaml @@ -75,7 +75,7 @@ jobs: timeout-minutes: 25 run: scripts/build/gn_bootstrap.sh - name: Uploading bootstrap logs - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ always() && !env.ACT }} with: name: bootstrap-logs @@ -128,7 +128,7 @@ jobs: - name: Clean out build output run: rm -rf ./out - name: Uploading Size Reports - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ !env.ACT }} with: name: Size,EFR32-Examples,${{ env.GH_EVENT_PR }},${{ env.GH_EVENT_HASH }},${{ env.GH_EVENT_PARENT }},${{ github.event_name }} diff --git a/.github/workflows/examples-esp32.yaml b/.github/workflows/examples-esp32.yaml index 74dee213b71be8..36ca82c7dcef55 100644 --- a/.github/workflows/examples-esp32.yaml +++ b/.github/workflows/examples-esp32.yaml @@ -69,7 +69,7 @@ jobs: timeout-minutes: 10 run: scripts/build/gn_bootstrap.sh - name: Uploading bootstrap logs - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ always() && !env.ACT }} with: name: bootstrap-logs @@ -144,7 +144,7 @@ jobs: run: scripts/examples/esp_example.sh lock-app sdkconfig.defaults - name: Uploading Size Reports - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ !env.ACT }} with: name: Size,ESP32-Examples,${{ env.GH_EVENT_PR }},${{ env.GH_EVENT_HASH }},${{ env.GH_EVENT_PARENT }},${{ github.event_name }} @@ -186,7 +186,7 @@ jobs: timeout-minutes: 10 run: scripts/build/gn_bootstrap.sh - name: Uploading bootstrap logs - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ always() && !env.ACT }} with: name: bootstrap-logs diff --git a/.github/workflows/examples-infineon.yaml b/.github/workflows/examples-infineon.yaml index 46db43bca68fa7..eaf9e6a09e0c25 100644 --- a/.github/workflows/examples-infineon.yaml +++ b/.github/workflows/examples-infineon.yaml @@ -69,7 +69,7 @@ jobs: timeout-minutes: 25 run: scripts/build/gn_bootstrap.sh - name: Uploading bootstrap logs - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ always() && !env.ACT }} with: name: bootstrap-logs @@ -167,7 +167,7 @@ jobs: out/artifacts/cyw30739-cyw930739m2evb_01-ota-requestor-no-progress-logging/chip-cyw30739-ota-requestor-example.elf \ /tmp/bloat_reports/ - name: Uploading Size Reports - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ !env.ACT }} with: name: Size,Infineon-Examples,${{ env.GH_EVENT_PR }},${{ env.GH_EVENT_HASH }},${{ env.GH_EVENT_PARENT }},${{ github.event_name }} diff --git a/.github/workflows/examples-k32w.yaml b/.github/workflows/examples-k32w.yaml index 77b9826f6f8231..6de090a4503c46 100644 --- a/.github/workflows/examples-k32w.yaml +++ b/.github/workflows/examples-k32w.yaml @@ -71,7 +71,7 @@ jobs: timeout-minutes: 25 run: scripts/build/gn_bootstrap.sh - name: Uploading bootstrap logs - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ always() && !env.ACT }} with: name: bootstrap-logs @@ -116,7 +116,7 @@ jobs: out/artifacts/k32w-contact-crypto-platform-tokenizer/chip-k32w0x-contact-example \ /tmp/bloat_reports/ - name: Uploading Size Reports - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ !env.ACT }} with: name: Size,K32W-Examples,${{ env.GH_EVENT_PR }},${{ env.GH_EVENT_HASH }},${{ env.GH_EVENT_PARENT }},${{ github.event_name }} diff --git a/.github/workflows/examples-linux-arm.yaml b/.github/workflows/examples-linux-arm.yaml index f0b78a5b46b383..98ed6833f7d563 100644 --- a/.github/workflows/examples-linux-arm.yaml +++ b/.github/workflows/examples-linux-arm.yaml @@ -69,7 +69,7 @@ jobs: timeout-minutes: 10 run: scripts/build/gn_bootstrap.sh - name: Uploading bootstrap logs - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ always() && !env.ACT }} with: name: bootstrap-logs @@ -106,7 +106,7 @@ jobs: out/linux-arm64-thermostat-no-ble-clang/thermostat-app \ /tmp/bloat_reports/ - name: Uploading Size Reports - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ !env.ACT }} with: name: Size,Linux-Examples,${{ env.GH_EVENT_PR }},${{ env.GH_EVENT_HASH }},${{ env.GH_EVENT_PARENT }},${{ github.event_name }} diff --git a/.github/workflows/examples-linux-standalone.yaml b/.github/workflows/examples-linux-standalone.yaml index 8d2d87f067b916..61fa5f82cbc764 100644 --- a/.github/workflows/examples-linux-standalone.yaml +++ b/.github/workflows/examples-linux-standalone.yaml @@ -69,7 +69,7 @@ jobs: timeout-minutes: 10 run: scripts/build/gn_bootstrap.sh - name: Uploading bootstrap logs - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ always() && !env.ACT }} with: name: bootstrap-logs @@ -219,7 +219,7 @@ jobs: --target linux-x64-contact-sensor-no-ble-with-ui \ build" - name: Uploading Size Reports - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ !env.ACT }} with: name: Size,Linux-Examples,${{ env.GH_EVENT_PR }},${{ env.GH_EVENT_HASH }},${{ env.GH_EVENT_PARENT }},${{ github.event_name }} diff --git a/.github/workflows/examples-mbed.yaml b/.github/workflows/examples-mbed.yaml index 53da5ba28ba613..1a2502b2a22a77 100644 --- a/.github/workflows/examples-mbed.yaml +++ b/.github/workflows/examples-mbed.yaml @@ -85,7 +85,7 @@ jobs: timeout-minutes: 10 run: scripts/build/gn_bootstrap.sh - name: Uploading bootstrap logs - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ always() && !env.ACT }} with: name: bootstrap-logs @@ -169,7 +169,7 @@ jobs: run: scripts/tests/mbed/mbed_unit_tests.sh -b=$APP_TARGET -p=$APP_PROFILE - name: Uploading Size Reports - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ !env.ACT }} with: name: Size,Mbed-Examples,${{ env.GH_EVENT_PR }},${{ env.GH_EVENT_HASH }},${{ env.GH_EVENT_PARENT }},${{ github.event_name }} diff --git a/.github/workflows/examples-mw320.yaml b/.github/workflows/examples-mw320.yaml old mode 100755 new mode 100644 index 1aea2f34557a52..f8539d8301490d --- a/.github/workflows/examples-mw320.yaml +++ b/.github/workflows/examples-mw320.yaml @@ -71,7 +71,7 @@ jobs: timeout-minutes: 25 run: scripts/build/gn_bootstrap.sh - name: Uploading bootstrap logs - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ always() && !env.ACT }} with: name: bootstrap-logs @@ -89,7 +89,7 @@ jobs: --copy-artifacts-to out/artifacts \ " - name: Uploading Size Reports - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ !env.ACT }} with: name: Size,MW320-Examples,${{ env.GH_EVENT_PR }},${{ env.GH_EVENT_HASH }},${{ env.GH_EVENT_PARENT }},${{ github.event_name }} diff --git a/.github/workflows/examples-nrfconnect.yaml b/.github/workflows/examples-nrfconnect.yaml index 4f0efb889359c8..fbb1664b1c93c8 100644 --- a/.github/workflows/examples-nrfconnect.yaml +++ b/.github/workflows/examples-nrfconnect.yaml @@ -86,7 +86,7 @@ jobs: timeout-minutes: 25 run: scripts/build/gn_bootstrap.sh - name: Uploading bootstrap logs - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ always() && !env.ACT }} with: name: bootstrap-logs @@ -247,7 +247,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 @@ -255,7 +255,7 @@ jobs: src/test_driver/nrfconnect/build/Testing/Temporary/LastTest.log - name: Uploading Size Reports - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ !env.ACT }} with: name: Size,nRFConnect-Examples,${{ env.GH_EVENT_PR }},${{ env.GH_EVENT_HASH }},${{ env.GH_EVENT_PARENT }},${{ github.event_name }} diff --git a/.github/workflows/examples-qpg.yaml b/.github/workflows/examples-qpg.yaml index 65376a17a86490..dd22147a3128b8 100644 --- a/.github/workflows/examples-qpg.yaml +++ b/.github/workflows/examples-qpg.yaml @@ -71,7 +71,7 @@ jobs: timeout-minutes: 25 run: scripts/build/gn_bootstrap.sh - name: Uploading bootstrap logs - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ always() && !env.ACT }} with: name: bootstrap-logs @@ -109,7 +109,7 @@ jobs: /tmp/bloat_reports/ - name: Uploading Size Reports - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ !env.ACT }} with: name: Size,QPG-Examples,${{ env.GH_EVENT_PR }},${{ env.GH_EVENT_HASH }},${{ env.GH_EVENT_PARENT }},${{ github.event_name }} diff --git a/.github/workflows/examples-telink.yaml b/.github/workflows/examples-telink.yaml index df6c31813167e1..32cd9cf81751e9 100644 --- a/.github/workflows/examples-telink.yaml +++ b/.github/workflows/examples-telink.yaml @@ -242,7 +242,7 @@ jobs: run: rm -rf ./out - name: Uploading Size Reports - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ !env.ACT }} with: name: Size,Telink-Examples,${{ env.GH_EVENT_PR }},${{ env.GH_EVENT_HASH }},${{ env.GH_EVENT_PARENT }},${{ github.event_name }} diff --git a/.github/workflows/full-android.yaml b/.github/workflows/full-android.yaml index d28d3fb1679b2d..21ab2be35b76e2 100644 --- a/.github/workflows/full-android.yaml +++ b/.github/workflows/full-android.yaml @@ -75,7 +75,7 @@ jobs: timeout-minutes: 10 run: scripts/build/gn_bootstrap.sh - name: Uploading bootstrap logs - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ always() && !env.ACT }} with: name: bootstrap-logs diff --git a/.github/workflows/fuzzing-build.yaml b/.github/workflows/fuzzing-build.yaml index ae4658086ced6b..7f298d3cb6fb4f 100644 --- a/.github/workflows/fuzzing-build.yaml +++ b/.github/workflows/fuzzing-build.yaml @@ -66,7 +66,7 @@ jobs: timeout-minutes: 10 run: scripts/build/gn_bootstrap.sh - name: Uploading bootstrap logs - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ always() && !env.ACT }} with: name: bootstrap-logs @@ -84,7 +84,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 @@ -126,7 +126,7 @@ jobs: timeout-minutes: 25 run: scripts/build/gn_bootstrap.sh - name: Uploading bootstrap logs - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ always() && !env.ACT }} with: name: bootstrap-logs @@ -144,7 +144,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/qemu.yaml b/.github/workflows/qemu.yaml index c91e378691d976..39443c21df14c1 100644 --- a/.github/workflows/qemu.yaml +++ b/.github/workflows/qemu.yaml @@ -67,7 +67,7 @@ jobs: timeout-minutes: 25 run: scripts/build/gn_bootstrap.sh - name: Uploading bootstrap logs - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ always() && !env.ACT }} with: name: bootstrap-logs @@ -90,7 +90,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/release_artifacts.yaml b/.github/workflows/release_artifacts.yaml index b43247453230fb..33c63907ae455b 100644 --- a/.github/workflows/release_artifacts.yaml +++ b/.github/workflows/release_artifacts.yaml @@ -55,7 +55,7 @@ jobs: timeout-minutes: 25 run: scripts/build/gn_bootstrap.sh - name: Uploading bootstrap logs - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ always() && !env.ACT }} with: name: bootstrap-logs @@ -110,7 +110,7 @@ jobs: timeout-minutes: 25 run: scripts/build/gn_bootstrap.sh - name: Uploading bootstrap logs - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ always() && !env.ACT }} with: name: bootstrap-logs diff --git a/.github/workflows/smoketest-android.yaml b/.github/workflows/smoketest-android.yaml index 90987df038cb79..5d47e5f4b7743e 100644 --- a/.github/workflows/smoketest-android.yaml +++ b/.github/workflows/smoketest-android.yaml @@ -66,7 +66,7 @@ jobs: timeout-minutes: 10 run: scripts/build/gn_bootstrap.sh - name: Uploading bootstrap logs - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ always() && !env.ACT }} with: name: bootstrap-logs diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 2eda3b67aa45fd..c2e4baa4e0d476 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -92,7 +92,7 @@ jobs: timeout-minutes: 10 run: scripts/build/gn_bootstrap.sh - name: Uploading bootstrap logs - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ always() && !env.ACT }} with: name: bootstrap-logs-linux-${{ matrix.build_variant }}${{ matrix.chip_tool }} @@ -281,7 +281,7 @@ jobs: --bridge-app ./out/linux-x64-bridge-${BUILD_VARIANT}/chip-bridge-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 }} @@ -289,7 +289,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 }} @@ -348,7 +348,7 @@ jobs: timeout-minutes: 25 run: scripts/build/gn_bootstrap.sh - name: Uploading bootstrap logs - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ always() && !env.ACT }} with: name: bootstrap-logs-darwin-${{ matrix.build_variant }}${{ matrix.chip_tool }} @@ -409,7 +409,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 }} @@ -417,13 +417,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 }} @@ -470,7 +470,7 @@ jobs: timeout-minutes: 10 run: scripts/build/gn_bootstrap.sh - name: Uploading bootstrap logs - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ always() && !env.ACT }} with: name: bootstrap-logs-linux-${{ matrix.build_variant }}${{ matrix.chip_tool }} @@ -500,7 +500,7 @@ jobs: scripts/run_in_build_env.sh './scripts/tests/run_python_test.py --app out/linux-x64-all-clusters-ipv6only-no-ble-no-wifi-tsan-clang-test/chip-all-clusters-app --factoryreset --app-args "--discriminator 1234 --KVS kvs1 --trace_decode 1" --script "src/python_testing/TC_ACE_1_4.py" --script-args "--storage-path admin_storage.json --commissioning-method on-network --discriminator 1234 --passcode 20202021 --int-arg PIXIT.ACE.APPENDPOINT:1 PIXIT.ACE.APPDEVTYPEID:0x0100 --string-arg PIXIT.ACE.APPCLUSTER:OnOff PIXIT.ACE.APPATTRIBUTE:OnOff"' scripts/run_in_build_env.sh './scripts/tests/run_python_test.py --app out/linux-x64-all-clusters-ipv6only-no-ble-no-wifi-tsan-clang-test/chip-all-clusters-app --factoryreset --app-args "--discriminator 1234 --KVS kvs1 --trace_decode 1" --script "src/python_testing/TC_ACE_1_3.py" --script-args "--storage-path admin_storage.json --commissioning-method on-network --discriminator 1234 --passcode 20202021"' - 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 @@ -508,7 +508,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 @@ -556,7 +556,7 @@ jobs: timeout-minutes: 10 run: scripts/build/gn_bootstrap.sh - name: Uploading bootstrap logs - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ always() && !env.ACT }} with: name: bootstrap-logs-linux-${{ matrix.build_variant }}${{ matrix.chip_tool }} @@ -671,7 +671,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 @@ -679,7 +679,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 @@ -729,7 +729,7 @@ jobs: timeout-minutes: 25 run: scripts/build/gn_bootstrap.sh - name: Uploading bootstrap logs - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ always() && !env.ACT }} with: name: bootstrap-logs-darwin-${{ matrix.build_variant }}${{ matrix.chip_tool }} @@ -752,7 +752,7 @@ jobs: run: | scripts/run_in_build_env.sh './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 @@ -760,13 +760,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-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 diff --git a/.github/workflows/unit_integration_test.yaml b/.github/workflows/unit_integration_test.yaml index 540e4a9563f283..3a69dc1a5922ba 100644 --- a/.github/workflows/unit_integration_test.yaml +++ b/.github/workflows/unit_integration_test.yaml @@ -60,7 +60,7 @@ jobs: mkdir -p /tmp/log_output ; scripts/build/gn_bootstrap.sh ; - name: Uploading bootstrap logs - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: ${{ always() && !env.ACT }} with: name: bootstrap-logs