From 7f6723f0a3b947297636143959fb8fc3c94a0fcd Mon Sep 17 00:00:00 2001 From: Boris Zbarsky Date: Fri, 9 Jun 2023 12:57:25 -0400 Subject: [PATCH] Pin the checkout action to v3.5.2 for now. (#27178) 3.5.3 sparse checkout support seems to break in our CI. See https://github.com/actions/checkout/issues/1378 --- .github/workflows/bloat_check.yaml | 2 +- .github/workflows/build.yaml | 10 +++++----- .github/workflows/chef.yaml | 6 +++--- .github/workflows/cherry-picks.yaml | 2 +- .github/workflows/cirque.yaml | 2 +- .github/workflows/darwin-tests.yaml | 2 +- .github/workflows/darwin.yaml | 2 +- .github/workflows/docbuild.yaml | 2 +- .github/workflows/docker_img.yaml | 2 +- .github/workflows/doxygen.yaml | 2 +- .github/workflows/examples-ameba.yaml | 2 +- .github/workflows/examples-asr.yaml | 2 +- .github/workflows/examples-bouffalolab.yaml | 2 +- .github/workflows/examples-cc13x2x7_26x2x7.yaml | 2 +- .github/workflows/examples-cc32xx.yaml | 2 +- .github/workflows/examples-efr32.yaml | 2 +- .github/workflows/examples-esp32.yaml | 4 ++-- .github/workflows/examples-infineon.yaml | 2 +- .github/workflows/examples-k32w.yaml | 2 +- .github/workflows/examples-linux-arm.yaml | 2 +- .github/workflows/examples-linux-imx.yaml | 2 +- .github/workflows/examples-linux-standalone.yaml | 2 +- .github/workflows/examples-mbed.yaml | 2 +- .github/workflows/examples-mw320.yaml | 2 +- .github/workflows/examples-nrfconnect.yaml | 2 +- .github/workflows/examples-openiotsdk.yaml | 2 +- .github/workflows/examples-qpg.yaml | 2 +- .github/workflows/examples-telink.yaml | 2 +- .github/workflows/examples-tizen.yaml | 2 +- .github/workflows/fixit_rotation.yaml | 2 +- .github/workflows/full-android.yaml | 4 ++-- .github/workflows/fuzzing-build.yaml | 4 ++-- .github/workflows/gradle-wrapper-validation.yml | 2 +- .github/workflows/java-tests.yaml | 2 +- .github/workflows/lint.yml | 4 ++-- .github/workflows/minimal-build.yaml | 2 +- .github/workflows/qemu.yaml | 4 ++-- .github/workflows/release_artifacts.yaml | 4 ++-- .github/workflows/smoketest-android.yaml | 2 +- .github/workflows/smoketest-darwin.yaml | 2 +- .github/workflows/spell.yml | 4 ++-- .github/workflows/tests.yaml | 10 +++++----- .github/workflows/todos.yaml | 2 +- .github/workflows/unit_integration_test.yaml | 2 +- .github/workflows/zap_regeneration.yaml | 2 +- .github/workflows/zap_templates.yaml | 2 +- 46 files changed, 63 insertions(+), 63 deletions(-) diff --git a/.github/workflows/bloat_check.yaml b/.github/workflows/bloat_check.yaml index 01f041cdd0..f68127b364 100644 --- a/.github/workflows/bloat_check.yaml +++ b/.github/workflows/bloat_check.yaml @@ -39,7 +39,7 @@ jobs: - uses: Wandalen/wretry.action@v1.0.36 name: Checkout with: - action: actions/checkout@v3 + action: actions/checkout@v3.5.2 with: | token: ${{ github.token }} attempt_limit: 3 diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index e4c4b5d337..9774faa586 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -56,7 +56,7 @@ jobs: - uses: Wandalen/wretry.action@v1.0.36 name: Checkout with: - action: actions/checkout@v3 + action: actions/checkout@v3.5.2 with: | token: ${{ github.token }} attempt_limit: 3 @@ -168,7 +168,7 @@ jobs: - uses: Wandalen/wretry.action@v1.0.36 name: Checkout with: - action: actions/checkout@v3 + action: actions/checkout@v3.5.2 with: | token: ${{ github.token }} attempt_limit: 3 @@ -340,7 +340,7 @@ jobs: - uses: Wandalen/wretry.action@v1.0.36 name: Checkout with: - action: actions/checkout@v3 + action: actions/checkout@v3.5.2 with: | token: ${{ github.token }} attempt_limit: 3 @@ -391,7 +391,7 @@ jobs: - uses: Wandalen/wretry.action@v1.0.36 name: Checkout with: - action: actions/checkout@v3 + action: actions/checkout@v3.5.2 with: | token: ${{ github.token }} attempt_limit: 3 @@ -499,7 +499,7 @@ jobs: - uses: Wandalen/wretry.action@v1.0.36 name: Checkout with: - action: actions/checkout@v3 + action: actions/checkout@v3.5.2 with: | token: ${{ github.token }} attempt_limit: 3 diff --git a/.github/workflows/chef.yaml b/.github/workflows/chef.yaml index 671eb2a7c5..c426996c18 100644 --- a/.github/workflows/chef.yaml +++ b/.github/workflows/chef.yaml @@ -42,7 +42,7 @@ jobs: - uses: Wandalen/wretry.action@v1.0.36 name: Checkout with: - action: actions/checkout@v3 + action: actions/checkout@v3.5.2 with: | token: ${{ github.token }} attempt_limit: 3 @@ -78,7 +78,7 @@ jobs: - uses: Wandalen/wretry.action@v1.0.36 name: Checkout with: - action: actions/checkout@v3 + action: actions/checkout@v3.5.2 with: | token: ${{ github.token }} attempt_limit: 3 @@ -114,7 +114,7 @@ jobs: - uses: Wandalen/wretry.action@v1.0.36 name: Checkout with: - action: actions/checkout@v3 + action: actions/checkout@v3.5.2 with: | token: ${{ github.token }} attempt_limit: 3 diff --git a/.github/workflows/cherry-picks.yaml b/.github/workflows/cherry-picks.yaml index d7ef371214..0fd7802dc4 100644 --- a/.github/workflows/cherry-picks.yaml +++ b/.github/workflows/cherry-picks.yaml @@ -20,7 +20,7 @@ jobs: ) steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v3.5.2 with: fetch-depth: 0 - name: Cherry-Pick into sve branch diff --git a/.github/workflows/cirque.yaml b/.github/workflows/cirque.yaml index ba6938efb7..98baf36f6d 100644 --- a/.github/workflows/cirque.yaml +++ b/.github/workflows/cirque.yaml @@ -57,7 +57,7 @@ jobs: - uses: Wandalen/wretry.action@v1.0.36 name: Checkout with: - action: actions/checkout@v3 + action: actions/checkout@v3.5.2 with: | token: ${{ github.token }} attempt_limit: 3 diff --git a/.github/workflows/darwin-tests.yaml b/.github/workflows/darwin-tests.yaml index 825e725785..29f34356e5 100644 --- a/.github/workflows/darwin-tests.yaml +++ b/.github/workflows/darwin-tests.yaml @@ -50,7 +50,7 @@ jobs: - uses: Wandalen/wretry.action@v1.0.36 name: Checkout with: - action: actions/checkout@v3 + action: actions/checkout@v3.5.2 with: | token: ${{ github.token }} attempt_limit: 3 diff --git a/.github/workflows/darwin.yaml b/.github/workflows/darwin.yaml index a7d8f31a81..a78ab07cf0 100644 --- a/.github/workflows/darwin.yaml +++ b/.github/workflows/darwin.yaml @@ -41,7 +41,7 @@ jobs: - uses: Wandalen/wretry.action@v1.0.36 name: Checkout with: - action: actions/checkout@v3 + action: actions/checkout@v3.5.2 with: | token: ${{ github.token }} attempt_limit: 3 diff --git a/.github/workflows/docbuild.yaml b/.github/workflows/docbuild.yaml index f49a9e660b..ac2a8072c8 100644 --- a/.github/workflows/docbuild.yaml +++ b/.github/workflows/docbuild.yaml @@ -22,7 +22,7 @@ jobs: steps: - name: Checkout the code - uses: actions/checkout@v3 + uses: actions/checkout@v3.5.2 with: path: matter fetch-depth: 0 diff --git a/.github/workflows/docker_img.yaml b/.github/workflows/docker_img.yaml index b7d93bc492..776a953957 100644 --- a/.github/workflows/docker_img.yaml +++ b/.github/workflows/docker_img.yaml @@ -62,7 +62,7 @@ jobs: - uses: Wandalen/wretry.action@v1.0.36 name: Checkout with: - action: actions/checkout@v3 + action: actions/checkout@v3.5.2 with: | token: ${{ github.token }} attempt_limit: 3 diff --git a/.github/workflows/doxygen.yaml b/.github/workflows/doxygen.yaml index 3a0dc4a9d9..15c5477c84 100644 --- a/.github/workflows/doxygen.yaml +++ b/.github/workflows/doxygen.yaml @@ -90,7 +90,7 @@ jobs: - name: "Print Actor" run: echo ${{github.actor}} - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v3.5.2 - name: Generate run: scripts/helpers/doxygen.sh - name: Extract branch name diff --git a/.github/workflows/examples-ameba.yaml b/.github/workflows/examples-ameba.yaml index 175261cef9..e188826740 100644 --- a/.github/workflows/examples-ameba.yaml +++ b/.github/workflows/examples-ameba.yaml @@ -45,7 +45,7 @@ jobs: - uses: Wandalen/wretry.action@v1.0.36 name: Checkout with: - action: actions/checkout@v3 + action: actions/checkout@v3.5.2 with: | token: ${{ github.token }} attempt_limit: 3 diff --git a/.github/workflows/examples-asr.yaml b/.github/workflows/examples-asr.yaml index 08dc3095ca..7a5722cf29 100644 --- a/.github/workflows/examples-asr.yaml +++ b/.github/workflows/examples-asr.yaml @@ -43,7 +43,7 @@ jobs: - uses: Wandalen/wretry.action@v1.0.36 name: Checkout with: - action: actions/checkout@v3 + action: actions/checkout@v3.5.2 with: | token: ${{ github.token }} attempt_limit: 3 diff --git a/.github/workflows/examples-bouffalolab.yaml b/.github/workflows/examples-bouffalolab.yaml index e548aa4259..3441ad51d2 100644 --- a/.github/workflows/examples-bouffalolab.yaml +++ b/.github/workflows/examples-bouffalolab.yaml @@ -45,7 +45,7 @@ jobs: - uses: Wandalen/wretry.action@v1.0.36 name: Checkout with: - action: actions/checkout@v3 + action: actions/checkout@v3.5.2 with: | token: ${{ github.token }} attempt_limit: 3 diff --git a/.github/workflows/examples-cc13x2x7_26x2x7.yaml b/.github/workflows/examples-cc13x2x7_26x2x7.yaml index ff03ba8ff9..0ebe1b067d 100644 --- a/.github/workflows/examples-cc13x2x7_26x2x7.yaml +++ b/.github/workflows/examples-cc13x2x7_26x2x7.yaml @@ -49,7 +49,7 @@ jobs: - uses: Wandalen/wretry.action@v1.0.36 name: Checkout with: - action: actions/checkout@v3 + action: actions/checkout@v3.5.2 with: | token: ${{ github.token }} attempt_limit: 3 diff --git a/.github/workflows/examples-cc32xx.yaml b/.github/workflows/examples-cc32xx.yaml index f31cf1e8a2..712648d998 100644 --- a/.github/workflows/examples-cc32xx.yaml +++ b/.github/workflows/examples-cc32xx.yaml @@ -47,7 +47,7 @@ jobs: - uses: Wandalen/wretry.action@v1.0.36 name: Checkout with: - action: actions/checkout@v3 + action: actions/checkout@v3.5.2 with: | token: ${{ github.token }} attempt_limit: 3 diff --git a/.github/workflows/examples-efr32.yaml b/.github/workflows/examples-efr32.yaml index d8961dde06..0f5db57834 100644 --- a/.github/workflows/examples-efr32.yaml +++ b/.github/workflows/examples-efr32.yaml @@ -48,7 +48,7 @@ jobs: - uses: Wandalen/wretry.action@v1.0.36 name: Checkout with: - action: actions/checkout@v3 + action: actions/checkout@v3.5.2 with: | token: ${{ github.token }} attempt_limit: 3 diff --git a/.github/workflows/examples-esp32.yaml b/.github/workflows/examples-esp32.yaml index 637c797fe5..5d36782b23 100644 --- a/.github/workflows/examples-esp32.yaml +++ b/.github/workflows/examples-esp32.yaml @@ -45,7 +45,7 @@ jobs: - uses: Wandalen/wretry.action@v1.0.36 name: Checkout with: - action: actions/checkout@v3 + action: actions/checkout@v3.5.2 with: | token: ${{ github.token }} attempt_limit: 3 @@ -170,7 +170,7 @@ jobs: - uses: Wandalen/wretry.action@v1.0.36 name: Checkout with: - action: actions/checkout@v3 + action: actions/checkout@v3.5.2 with: | token: ${{ github.token }} attempt_limit: 3 diff --git a/.github/workflows/examples-infineon.yaml b/.github/workflows/examples-infineon.yaml index b48aafbf49..e05a56b215 100644 --- a/.github/workflows/examples-infineon.yaml +++ b/.github/workflows/examples-infineon.yaml @@ -45,7 +45,7 @@ jobs: - uses: Wandalen/wretry.action@v1.0.36 name: Checkout with: - action: actions/checkout@v3 + action: actions/checkout@v3.5.2 with: | token: ${{ github.token }} attempt_limit: 3 diff --git a/.github/workflows/examples-k32w.yaml b/.github/workflows/examples-k32w.yaml index d5d31eddbd..855f0ea88f 100644 --- a/.github/workflows/examples-k32w.yaml +++ b/.github/workflows/examples-k32w.yaml @@ -47,7 +47,7 @@ jobs: - uses: Wandalen/wretry.action@v1.0.36 name: Checkout with: - action: actions/checkout@v3 + action: actions/checkout@v3.5.2 with: | token: ${{ github.token }} attempt_limit: 3 diff --git a/.github/workflows/examples-linux-arm.yaml b/.github/workflows/examples-linux-arm.yaml index b8af253b49..3b293599b0 100644 --- a/.github/workflows/examples-linux-arm.yaml +++ b/.github/workflows/examples-linux-arm.yaml @@ -45,7 +45,7 @@ jobs: - uses: Wandalen/wretry.action@v1.0.36 name: Checkout with: - action: actions/checkout@v3 + action: actions/checkout@v3.5.2 with: | token: ${{ github.token }} attempt_limit: 3 diff --git a/.github/workflows/examples-linux-imx.yaml b/.github/workflows/examples-linux-imx.yaml index 3dd30ed119..bb633d23f9 100644 --- a/.github/workflows/examples-linux-imx.yaml +++ b/.github/workflows/examples-linux-imx.yaml @@ -43,7 +43,7 @@ jobs: - uses: Wandalen/wretry.action@v1.0.36 name: Checkout with: - action: actions/checkout@v3 + action: actions/checkout@v3.5.2 with: | token: ${{ github.token }} attempt_limit: 3 diff --git a/.github/workflows/examples-linux-standalone.yaml b/.github/workflows/examples-linux-standalone.yaml index c291943771..8504087a83 100644 --- a/.github/workflows/examples-linux-standalone.yaml +++ b/.github/workflows/examples-linux-standalone.yaml @@ -45,7 +45,7 @@ jobs: - uses: Wandalen/wretry.action@v1.0.36 name: Checkout with: - action: actions/checkout@v3 + action: actions/checkout@v3.5.2 with: | token: ${{ github.token }} attempt_limit: 3 diff --git a/.github/workflows/examples-mbed.yaml b/.github/workflows/examples-mbed.yaml index 5f04e7eac1..e32c75300e 100644 --- a/.github/workflows/examples-mbed.yaml +++ b/.github/workflows/examples-mbed.yaml @@ -51,7 +51,7 @@ jobs: - uses: Wandalen/wretry.action@v1.0.36 name: Checkout with: - action: actions/checkout@v3 + action: actions/checkout@v3.5.2 with: | token: ${{ github.token }} attempt_limit: 3 diff --git a/.github/workflows/examples-mw320.yaml b/.github/workflows/examples-mw320.yaml index 9d64805bcb..0d1a285f0d 100755 --- a/.github/workflows/examples-mw320.yaml +++ b/.github/workflows/examples-mw320.yaml @@ -47,7 +47,7 @@ jobs: - uses: Wandalen/wretry.action@v1.0.36 name: Checkout with: - action: actions/checkout@v3 + action: actions/checkout@v3.5.2 with: | token: ${{ github.token }} attempt_limit: 3 diff --git a/.github/workflows/examples-nrfconnect.yaml b/.github/workflows/examples-nrfconnect.yaml index cb1c94f591..034a532a93 100644 --- a/.github/workflows/examples-nrfconnect.yaml +++ b/.github/workflows/examples-nrfconnect.yaml @@ -48,7 +48,7 @@ jobs: - uses: Wandalen/wretry.action@v1.0.36 name: Checkout with: - action: actions/checkout@v3 + action: actions/checkout@v3.5.2 with: | token: ${{ github.token }} attempt_limit: 3 diff --git a/.github/workflows/examples-openiotsdk.yaml b/.github/workflows/examples-openiotsdk.yaml index d2f2e904c7..08f46969da 100644 --- a/.github/workflows/examples-openiotsdk.yaml +++ b/.github/workflows/examples-openiotsdk.yaml @@ -50,7 +50,7 @@ jobs: - uses: Wandalen/wretry.action@v1.0.36 name: Checkout with: - action: actions/checkout@v3 + action: actions/checkout@v3.5.2 with: | token: ${{ github.token }} attempt_limit: 3 diff --git a/.github/workflows/examples-qpg.yaml b/.github/workflows/examples-qpg.yaml index bf97acb89b..ab7d33b5cc 100644 --- a/.github/workflows/examples-qpg.yaml +++ b/.github/workflows/examples-qpg.yaml @@ -47,7 +47,7 @@ jobs: - uses: Wandalen/wretry.action@v1.0.36 name: Checkout with: - action: actions/checkout@v3 + action: actions/checkout@v3.5.2 with: | token: ${{ github.token }} attempt_limit: 3 diff --git a/.github/workflows/examples-telink.yaml b/.github/workflows/examples-telink.yaml index 8bddf9aa69..74e050bb05 100644 --- a/.github/workflows/examples-telink.yaml +++ b/.github/workflows/examples-telink.yaml @@ -46,7 +46,7 @@ jobs: - uses: Wandalen/wretry.action@v1.0.36 name: Checkout with: - action: actions/checkout@v3 + action: actions/checkout@v3.5.2 with: | token: ${{ github.token }} attempt_limit: 3 diff --git a/.github/workflows/examples-tizen.yaml b/.github/workflows/examples-tizen.yaml index dc6240fe45..a0f33c5210 100644 --- a/.github/workflows/examples-tizen.yaml +++ b/.github/workflows/examples-tizen.yaml @@ -46,7 +46,7 @@ jobs: - uses: Wandalen/wretry.action@v1.0.36 name: Checkout with: - action: actions/checkout@v3 + action: actions/checkout@v3.5.2 with: | token: ${{ github.token }} attempt_limit: 3 diff --git a/.github/workflows/fixit_rotation.yaml b/.github/workflows/fixit_rotation.yaml index ac5383f789..c7ffed5302 100644 --- a/.github/workflows/fixit_rotation.yaml +++ b/.github/workflows/fixit_rotation.yaml @@ -26,7 +26,7 @@ jobs: - uses: Wandalen/wretry.action@v1.0.36 name: Checkout with: - action: actions/checkout@v3 + action: actions/checkout@v3.5.2 with: | submodules: true token: ${{ github.token }} diff --git a/.github/workflows/full-android.yaml b/.github/workflows/full-android.yaml index 7239575c68..3b39c71b58 100644 --- a/.github/workflows/full-android.yaml +++ b/.github/workflows/full-android.yaml @@ -48,7 +48,7 @@ jobs: if: ${{ !env.ACT }} name: Checkout with: - action: actions/checkout@v3 + action: actions/checkout@v3.5.2 with: | token: ${{ github.token }} attempt_limit: 3 @@ -59,7 +59,7 @@ jobs: # Note you likely still need to have non submodules setup for the # local machine, like: # git submodule deinit --all - - uses: actions/checkout@v3 + - uses: actions/checkout@v3.5.2 if: ${{ env.ACT }} name: Checkout (ACT for local build) - name: Checkout submodules diff --git a/.github/workflows/fuzzing-build.yaml b/.github/workflows/fuzzing-build.yaml index 68b62b88d8..4e589a9846 100644 --- a/.github/workflows/fuzzing-build.yaml +++ b/.github/workflows/fuzzing-build.yaml @@ -44,7 +44,7 @@ jobs: - uses: Wandalen/wretry.action@v1.0.36 name: Checkout with: - action: actions/checkout@v3 + action: actions/checkout@v3.5.2 with: | submodules: true token: ${{ github.token }} @@ -104,7 +104,7 @@ jobs: - uses: Wandalen/wretry.action@v1.0.36 name: Checkout with: - action: actions/checkout@v3 + action: actions/checkout@v3.5.2 with: | submodules: true token: ${{ github.token }} diff --git a/.github/workflows/gradle-wrapper-validation.yml b/.github/workflows/gradle-wrapper-validation.yml index 8bfd0dcf51..913c5672e3 100644 --- a/.github/workflows/gradle-wrapper-validation.yml +++ b/.github/workflows/gradle-wrapper-validation.yml @@ -6,5 +6,5 @@ jobs: name: "Validation" runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v3.5.2 - uses: gradle/wrapper-validation-action@v1 diff --git a/.github/workflows/java-tests.yaml b/.github/workflows/java-tests.yaml index 911c11ddbe..37ebeeea0a 100644 --- a/.github/workflows/java-tests.yaml +++ b/.github/workflows/java-tests.yaml @@ -49,7 +49,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v3.5.2 - name: Checkout submodules run: scripts/checkout_submodules.py --allow-changing-global-git-config --shallow --platform linux - name: Try to ensure the directories for core dumping exist and we diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 8a770ecb46..da846e5939 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -40,7 +40,7 @@ jobs: if: ${{ !env.ACT }} name: Checkout with: - action: actions/checkout@v3 + action: actions/checkout@v3.5.2 with: | token: ${{ github.token }} attempt_limit: 3 @@ -51,7 +51,7 @@ jobs: # Note you likely still need to have non submodules setup for the # local machine, like: # git submodule deinit --all - - uses: actions/checkout@v3 + - uses: actions/checkout@v3.5.2 if: ${{ env.ACT }} name: Checkout (ACT for local build) diff --git a/.github/workflows/minimal-build.yaml b/.github/workflows/minimal-build.yaml index 67d9bbfdd6..77b801a749 100644 --- a/.github/workflows/minimal-build.yaml +++ b/.github/workflows/minimal-build.yaml @@ -36,7 +36,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v3.5.2 - name: Checkout submodules run: scripts/checkout_submodules.py --allow-changing-global-git-config --shallow --platform linux - name: Configure and build All Clusters App diff --git a/.github/workflows/qemu.yaml b/.github/workflows/qemu.yaml index b8d68f4a3a..2459ecbcaa 100644 --- a/.github/workflows/qemu.yaml +++ b/.github/workflows/qemu.yaml @@ -49,7 +49,7 @@ jobs: - uses: Wandalen/wretry.action@v1.0.36 name: Checkout with: - action: actions/checkout@v3 + action: actions/checkout@v3.5.2 with: | token: ${{ github.token }} attempt_limit: 3 @@ -113,7 +113,7 @@ jobs: - uses: Wandalen/wretry.action@v1.0.36 name: Checkout with: - action: actions/checkout@v3 + action: actions/checkout@v3.5.2 with: | token: ${{ github.token }} attempt_limit: 3 diff --git a/.github/workflows/release_artifacts.yaml b/.github/workflows/release_artifacts.yaml index fc371f695a..a525a97db0 100644 --- a/.github/workflows/release_artifacts.yaml +++ b/.github/workflows/release_artifacts.yaml @@ -40,7 +40,7 @@ jobs: - uses: Wandalen/wretry.action@v1.0.36 name: Checkout with: - action: actions/checkout@v3 + action: actions/checkout@v3.5.2 with: | submodules: true token: ${{ github.token }} @@ -95,7 +95,7 @@ jobs: - uses: Wandalen/wretry.action@v1.0.36 name: Checkout with: - action: actions/checkout@v3 + action: actions/checkout@v3.5.2 with: | submodules: true token: ${{ github.token }} diff --git a/.github/workflows/smoketest-android.yaml b/.github/workflows/smoketest-android.yaml index de1d5ab89e..cce15a0407 100644 --- a/.github/workflows/smoketest-android.yaml +++ b/.github/workflows/smoketest-android.yaml @@ -48,7 +48,7 @@ jobs: - uses: Wandalen/wretry.action@v1.0.36 name: Checkout with: - action: actions/checkout@v3 + action: actions/checkout@v3.5.2 with: | token: ${{ github.token }} attempt_limit: 3 diff --git a/.github/workflows/smoketest-darwin.yaml b/.github/workflows/smoketest-darwin.yaml index 0ab19f6dd9..13f328b029 100644 --- a/.github/workflows/smoketest-darwin.yaml +++ b/.github/workflows/smoketest-darwin.yaml @@ -41,7 +41,7 @@ jobs: - uses: Wandalen/wretry.action@v1.0.36 name: Checkout with: - action: actions/checkout@v3 + action: actions/checkout@v3.5.2 with: | token: ${{ github.token }} attempt_limit: 3 diff --git a/.github/workflows/spell.yml b/.github/workflows/spell.yml index f073c20338..3de0afa566 100644 --- a/.github/workflows/spell.yml +++ b/.github/workflows/spell.yml @@ -32,7 +32,7 @@ jobs: - uses: Wandalen/wretry.action@v1.0.36 name: Checkout with: - action: actions/checkout@v3 + action: actions/checkout@v3.5.2 with: | token: ${{ github.token }} attempt_limit: 3 @@ -47,7 +47,7 @@ jobs: - uses: Wandalen/wretry.action@v1.0.36 name: Checkout with: - action: actions/checkout@v3 + action: actions/checkout@v3.5.2 with: | token: ${{ github.token }} attempt_limit: 3 diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 14146339d5..2d641bb21a 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -59,7 +59,7 @@ jobs: if: ${{ !env.ACT }} name: Checkout with: - action: actions/checkout@v3 + action: actions/checkout@v3.5.2 with: | token: ${{ github.token }} attempt_limit: 3 @@ -70,7 +70,7 @@ jobs: # Note you likely still need to have non submodules setup for the # local machine, like: # git submodule deinit --all - - uses: actions/checkout@v3 + - uses: actions/checkout@v3.5.2 if: ${{ env.ACT }} name: Checkout (ACT for local build) - name: Checkout submodules @@ -332,7 +332,7 @@ jobs: - uses: Wandalen/wretry.action@v1.0.36 name: Checkout with: - action: actions/checkout@v3 + action: actions/checkout@v3.5.2 with: | token: ${{ github.token }} attempt_limit: 3 @@ -463,7 +463,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v3.5.2 - name: Checkout submodules run: scripts/checkout_submodules.py --allow-changing-global-git-config --shallow --platform linux - name: Try to ensure the directories for core dumping exist and we @@ -551,7 +551,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v3.5.2 - name: Checkout submodules run: scripts/checkout_submodules.py --allow-changing-global-git-config --shallow --platform darwin - name: Setup Environment diff --git a/.github/workflows/todos.yaml b/.github/workflows/todos.yaml index 4381b3ca9d..f7e82d5f21 100644 --- a/.github/workflows/todos.yaml +++ b/.github/workflows/todos.yaml @@ -26,7 +26,7 @@ jobs: - uses: Wandalen/wretry.action@v1.0.36 name: Checkout with: - action: actions/checkout@v3 + action: actions/checkout@v3.5.2 with: | token: ${{ github.token }} attempt_limit: 3 diff --git a/.github/workflows/unit_integration_test.yaml b/.github/workflows/unit_integration_test.yaml index c42595e1c9..9a22f6bc0d 100644 --- a/.github/workflows/unit_integration_test.yaml +++ b/.github/workflows/unit_integration_test.yaml @@ -47,7 +47,7 @@ jobs: - uses: Wandalen/wretry.action@v1.0.36 name: Checkout with: - action: actions/checkout@v3 + action: actions/checkout@v3.5.2 with: | token: ${{ github.token }} attempt_limit: 3 diff --git a/.github/workflows/zap_regeneration.yaml b/.github/workflows/zap_regeneration.yaml index 22cdb0430b..f30714c2a6 100644 --- a/.github/workflows/zap_regeneration.yaml +++ b/.github/workflows/zap_regeneration.yaml @@ -43,7 +43,7 @@ jobs: - uses: Wandalen/wretry.action@v1.0.36 name: Checkout with: - action: actions/checkout@v3 + action: actions/checkout@v3.5.2 with: | submodules: true token: ${{ github.token }} diff --git a/.github/workflows/zap_templates.yaml b/.github/workflows/zap_templates.yaml index 60513c863e..04cb6b8990 100644 --- a/.github/workflows/zap_templates.yaml +++ b/.github/workflows/zap_templates.yaml @@ -45,7 +45,7 @@ jobs: - uses: Wandalen/wretry.action@v1.0.36 name: Checkout with: - action: actions/checkout@v3 + action: actions/checkout@v3.5.2 with: | token: ${{ github.token }} attempt_limit: 3