diff --git a/.github/workflows/build_python.yml b/.github/workflows/build_python.yml index 925d866ade..e4f6b3f141 100644 --- a/.github/workflows/build_python.yml +++ b/.github/workflows/build_python.yml @@ -29,13 +29,13 @@ jobs: steps: - name: Clone Repository (Latest) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref == '' with: submodules: recursive fetch-depth: 0 # Get tags for use with git describe - name: Clone Repository (Custom Ref) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} @@ -98,7 +98,7 @@ jobs: name: Build source distribution runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6.0.1 + - uses: actions/checkout@v6.0.2 - name: Build sdist run: pipx run build --sdist diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index acf8fd0e5b..4a2153804e 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -106,7 +106,7 @@ jobs: run: git config --global http.postBuffer 1048576000 && git config --global core.compression 0 - name: Clone Repository (Latest) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref == '' with: # ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS @@ -115,7 +115,7 @@ jobs: fetch-depth: 0 fetch-tags: true - name: Clone Repository (Custom Ref) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} @@ -193,13 +193,13 @@ jobs: steps: - name: Clone Repository (Latest) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref == '' with: ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS submodules: recursive - name: Clone Repository (Custom Ref) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} @@ -260,7 +260,7 @@ jobs: needs: [cmake-main, cmake-other] steps: - name: Clone the GitHub actions scripts - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 with: repository: equipez/github_actions_scripts ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS diff --git a/.github/workflows/cmake_mac.yml b/.github/workflows/cmake_mac.yml index 39be75d5ed..b718ff2c13 100644 --- a/.github/workflows/cmake_mac.yml +++ b/.github/workflows/cmake_mac.yml @@ -43,7 +43,7 @@ jobs: steps: - name: Clone Repository (Latest) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref == '' with: # ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS @@ -52,7 +52,7 @@ jobs: fetch-depth: 0 fetch-tags: true - name: Clone Repository (Custom Ref) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} @@ -103,7 +103,7 @@ jobs: needs: cmake steps: - name: Clone the GitHub actions scripts - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 with: repository: equipez/github_actions_scripts ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS diff --git a/.github/workflows/cmake_mac_nagfor.yml b/.github/workflows/cmake_mac_nagfor.yml index ecc543f777..1a4a0fc3ae 100644 --- a/.github/workflows/cmake_mac_nagfor.yml +++ b/.github/workflows/cmake_mac_nagfor.yml @@ -38,7 +38,7 @@ jobs: steps: - name: Clone Repository (Latest) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref == '' with: # ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS @@ -47,7 +47,7 @@ jobs: fetch-depth: 0 fetch-tags: true - name: Clone Repository (Custom Ref) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} @@ -103,7 +103,7 @@ jobs: needs: cmake steps: - name: Clone the GitHub actions scripts - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 with: repository: equipez/github_actions_scripts ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS diff --git a/.github/workflows/cmake_nagfor.yml b/.github/workflows/cmake_nagfor.yml index c15eae302d..3fb6c5088f 100644 --- a/.github/workflows/cmake_nagfor.yml +++ b/.github/workflows/cmake_nagfor.yml @@ -40,13 +40,13 @@ jobs: steps: - name: Clone Repository (Latest) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref == '' with: ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS submodules: recursive - name: Clone Repository (Custom Ref) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} @@ -100,7 +100,7 @@ jobs: needs: cmake steps: - name: Clone the GitHub actions scripts - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 with: repository: equipez/github_actions_scripts ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS diff --git a/.github/workflows/cmake_pi.yml b/.github/workflows/cmake_pi.yml index b5587ae44f..719cf43f47 100644 --- a/.github/workflows/cmake_pi.yml +++ b/.github/workflows/cmake_pi.yml @@ -41,13 +41,13 @@ jobs: steps: - name: Clone Repository (Latest) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref == '' with: ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS submodules: recursive - name: Clone Repository (Custom Ref) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} @@ -109,7 +109,7 @@ jobs: needs: cmake steps: - name: Clone the GitHub actions scripts - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 with: repository: equipez/github_actions_scripts ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS diff --git a/.github/workflows/compile_mex.yml b/.github/workflows/compile_mex.yml index ad5bfa38e8..6443d34725 100644 --- a/.github/workflows/compile_mex.yml +++ b/.github/workflows/compile_mex.yml @@ -86,14 +86,14 @@ jobs: swap-storage: false # Important, or the runner may be shut down due to memory starvation. - name: Clone Repository (Latest) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref == '' with: submodules: recursive # ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS # As of 231227, checkout with ssh fails frequently on Windows runners. - name: Clone Repository (Custom Ref) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} @@ -189,12 +189,12 @@ jobs: # steps: # - name: Clone Repository (Latest) - # uses: actions/checkout@v6.0.1 + # uses: actions/checkout@v6.0.2 # if: github.event.inputs.git-ref == '' # with: # submodules: recursive # - name: Clone Repository (Custom Ref) - # uses: actions/checkout@v6.0.1 + # uses: actions/checkout@v6.0.2 # if: github.event.inputs.git-ref != '' # with: # ref: ${{ github.event.inputs.git-ref }} diff --git a/.github/workflows/lint_hosted.yml b/.github/workflows/lint_hosted.yml index 14ac60835c..5f88c7ae2a 100644 --- a/.github/workflows/lint_hosted.yml +++ b/.github/workflows/lint_hosted.yml @@ -47,13 +47,13 @@ jobs: swap-storage: false # Important, or the runner may be shut down due to memory starvation. - name: Clone Repository (Latest) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref == '' with: ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS submodules: recursive - name: Clone Repository (Custom Ref) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} @@ -133,7 +133,7 @@ jobs: needs: test steps: - name: Clone the GitHub actions scripts - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 with: repository: equipez/github_actions_scripts ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS diff --git a/.github/workflows/lint_nagfor.yml b/.github/workflows/lint_nagfor.yml index 8cd8caf4df..c99e2fd181 100644 --- a/.github/workflows/lint_nagfor.yml +++ b/.github/workflows/lint_nagfor.yml @@ -31,13 +31,13 @@ jobs: steps: - name: Clone Repository (Latest) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref == '' with: ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS submodules: recursive - name: Clone Repository (Custom Ref) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} @@ -71,7 +71,7 @@ jobs: needs: test steps: - name: Clone the GitHub actions scripts - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 with: repository: equipez/github_actions_scripts ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS diff --git a/.github/workflows/parallel_test_matlab.yml b/.github/workflows/parallel_test_matlab.yml index ec7312def1..9321785be2 100644 --- a/.github/workflows/parallel_test_matlab.yml +++ b/.github/workflows/parallel_test_matlab.yml @@ -67,14 +67,14 @@ jobs: swap-storage: false # Important, or the runner may be shut down due to memory starvation. - name: Clone Repository (Latest) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref == '' with: submodules: recursive # ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS # As of 231227, checkout with ssh fails frequently on Windows runners. - name: Clone Repository (Custom Ref) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} @@ -229,7 +229,7 @@ jobs: needs: test steps: - name: Clone the GitHub actions scripts - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 with: repository: equipez/github_actions_scripts ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS diff --git a/.github/workflows/parallel_test_matlab_mac.yml b/.github/workflows/parallel_test_matlab_mac.yml index 0a0d6ea27b..c241e4249a 100644 --- a/.github/workflows/parallel_test_matlab_mac.yml +++ b/.github/workflows/parallel_test_matlab_mac.yml @@ -25,14 +25,14 @@ jobs: steps: - name: Clone Repository (Latest) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref == '' with: # ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS # As of 231227, checkout with ssh fails frequently on Windows runners. submodules: recursive - name: Clone Repository (Custom Ref) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} @@ -61,7 +61,7 @@ jobs: needs: test steps: - name: Clone the GitHub actions scripts - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 with: repository: equipez/github_actions_scripts ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS diff --git a/.github/workflows/profile_all.yml b/.github/workflows/profile_all.yml index 4e89da814a..c7c776d1e3 100644 --- a/.github/workflows/profile_all.yml +++ b/.github/workflows/profile_all.yml @@ -82,14 +82,14 @@ jobs: swap-storage: false # Important, or the runner may be shut down due to memory starvation. - name: Clone Repository (Latest) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref == '' with: fetch-depth: 2 # checkout fetches only one commit by default. Set it to two for the `norma` test ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS submodules: recursive - name: Clone Repository (Custom Ref) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref != '' with: fetch-depth: 2 # checkout fetches only one commit by default. Set it to two for the `norma` test @@ -104,7 +104,7 @@ jobs: run: export SWAP_SIZE=20 && bash .github/scripts/misc_setup - name: Clone MatCUTEst - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 with: ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS repository: matcutest/matcutest_compiled diff --git a/.github/workflows/profile_all_sq.yml b/.github/workflows/profile_all_sq.yml index 5cfded9a93..77f3533cbc 100644 --- a/.github/workflows/profile_all_sq.yml +++ b/.github/workflows/profile_all_sq.yml @@ -78,14 +78,14 @@ jobs: swap-storage: false # Important, or the runner may be shut down due to memory starvation. - name: Clone Repository (Latest) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref == '' with: fetch-depth: 2 # checkout fetches only one commit by default. Set it to two for the `norma` test ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS submodules: recursive - name: Clone Repository (Custom Ref) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref != '' with: fetch-depth: 2 # checkout fetches only one commit by default. Set it to two for the `norma` test @@ -100,7 +100,7 @@ jobs: run: export SWAP_SIZE=20 && bash .github/scripts/misc_setup - name: Clone MatCUTEst - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 with: ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS repository: matcutest/matcutest_compiled @@ -290,7 +290,7 @@ jobs: needs: test steps: - name: Clone the GitHub actions scripts - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 with: repository: equipez/github_actions_scripts ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS diff --git a/.github/workflows/profile_bobyqa_small.yml b/.github/workflows/profile_bobyqa_small.yml index 11ebb5c184..9580630357 100644 --- a/.github/workflows/profile_bobyqa_small.yml +++ b/.github/workflows/profile_bobyqa_small.yml @@ -51,14 +51,14 @@ jobs: swap-storage: false # Important, or the runner may be shut down due to memory starvation. - name: Clone Repository (Latest) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref == '' with: fetch-depth: 2 # checkout fetches only one commit by default. Set it to two for the `norma` test ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS submodules: recursive - name: Clone Repository (Custom Ref) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref != '' with: fetch-depth: 2 # checkout fetches only one commit by default. Set it to two for the `norma` test @@ -73,7 +73,7 @@ jobs: run: bash .github/scripts/misc_setup - name: Clone MatCUTEst - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 with: ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS repository: matcutest/matcutest_compiled diff --git a/.github/workflows/profile_bobyqa_small_sq.yml b/.github/workflows/profile_bobyqa_small_sq.yml index bca59360d6..005cef014b 100644 --- a/.github/workflows/profile_bobyqa_small_sq.yml +++ b/.github/workflows/profile_bobyqa_small_sq.yml @@ -52,14 +52,14 @@ jobs: swap-storage: false # Important, or the runner may be shut down due to memory starvation. - name: Clone Repository (Latest) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref == '' with: fetch-depth: 2 # checkout fetches only one commit by default. Set it to two for the `norma` test ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS submodules: recursive - name: Clone Repository (Custom Ref) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref != '' with: fetch-depth: 2 # checkout fetches only one commit by default. Set it to two for the `norma` test @@ -74,7 +74,7 @@ jobs: run: bash .github/scripts/misc_setup - name: Clone MatCUTEst - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 with: ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS repository: matcutest/matcutest_compiled @@ -221,7 +221,7 @@ jobs: needs: test steps: - name: Clone the GitHub actions scripts - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 with: repository: equipez/github_actions_scripts ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS diff --git a/.github/workflows/profile_cobyla_small.yml b/.github/workflows/profile_cobyla_small.yml index df5247c5df..0e20598060 100644 --- a/.github/workflows/profile_cobyla_small.yml +++ b/.github/workflows/profile_cobyla_small.yml @@ -60,14 +60,14 @@ jobs: swap-storage: false # Important, or the runner may be shut down due to memory starvation. - name: Clone Repository (Latest) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref == '' with: fetch-depth: 2 # checkout fetches only one commit by default. Set it to two for the `norma` test ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS submodules: recursive - name: Clone Repository (Custom Ref) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref != '' with: fetch-depth: 2 # checkout fetches only one commit by default. Set it to two for the `norma` test @@ -82,7 +82,7 @@ jobs: run: bash .github/scripts/misc_setup - name: Clone MatCUTEst - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 with: ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS repository: matcutest/matcutest_compiled diff --git a/.github/workflows/profile_cobyla_small_sq.yml b/.github/workflows/profile_cobyla_small_sq.yml index 8926fbfd04..e11885bbb9 100644 --- a/.github/workflows/profile_cobyla_small_sq.yml +++ b/.github/workflows/profile_cobyla_small_sq.yml @@ -56,14 +56,14 @@ jobs: swap-storage: false # Important, or the runner may be shut down due to memory starvation. - name: Clone Repository (Latest) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref == '' with: fetch-depth: 2 # checkout fetches only one commit by default. Set it to two for the `norma` test ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS submodules: recursive - name: Clone Repository (Custom Ref) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref != '' with: fetch-depth: 2 # checkout fetches only one commit by default. Set it to two for the `norma` test @@ -78,7 +78,7 @@ jobs: run: bash .github/scripts/misc_setup - name: Clone MatCUTEst - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 with: ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS repository: matcutest/matcutest_compiled @@ -247,7 +247,7 @@ jobs: needs: test steps: - name: Clone the GitHub actions scripts - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 with: repository: equipez/github_actions_scripts ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS diff --git a/.github/workflows/profile_compiler_options.yml b/.github/workflows/profile_compiler_options.yml index 9182c6c0a2..3572a6d439 100644 --- a/.github/workflows/profile_compiler_options.yml +++ b/.github/workflows/profile_compiler_options.yml @@ -54,13 +54,13 @@ jobs: swap-storage: false # Important, or the runner may be shut down due to memory starvation. - name: Clone Repository (Latest) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref == '' with: ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS submodules: recursive - name: Clone Repository (Custom Ref) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} @@ -71,7 +71,7 @@ jobs: run: bash .github/scripts/misc_setup - name: Clone MatCUTEst - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 with: ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS repository: matcutest/matcutest_compiled @@ -253,7 +253,7 @@ jobs: needs: test steps: - name: Clone the GitHub actions scripts - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 with: repository: equipez/github_actions_scripts ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS diff --git a/.github/workflows/profile_infnan.yml b/.github/workflows/profile_infnan.yml index 9341f9b006..5adb491799 100644 --- a/.github/workflows/profile_infnan.yml +++ b/.github/workflows/profile_infnan.yml @@ -54,13 +54,13 @@ jobs: swap-storage: false # Important, or the runner may be shut down due to memory starvation. - name: Clone Repository (Latest) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref == '' with: ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS submodules: recursive - name: Clone Repository (Custom Ref) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} @@ -71,7 +71,7 @@ jobs: run: bash .github/scripts/misc_setup - name: Clone MatCUTEst - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 with: ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS repository: matcutest/matcutest_compiled @@ -253,7 +253,7 @@ jobs: needs: test steps: - name: Clone the GitHub actions scripts - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 with: repository: equipez/github_actions_scripts ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS diff --git a/.github/workflows/profile_integer_kind.yml b/.github/workflows/profile_integer_kind.yml index 2db0d799bb..2cc0cb47b5 100644 --- a/.github/workflows/profile_integer_kind.yml +++ b/.github/workflows/profile_integer_kind.yml @@ -55,13 +55,13 @@ jobs: swap-storage: false # Important, or the runner may be shut down due to memory starvation. - name: Clone Repository (Latest) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref == '' with: ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS submodules: recursive - name: Clone Repository (Custom Ref) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} @@ -72,7 +72,7 @@ jobs: run: bash .github/scripts/misc_setup - name: Clone MatCUTEst - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 with: ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS repository: matcutest/matcutest_compiled @@ -263,7 +263,7 @@ jobs: needs: test steps: - name: Clone the GitHub actions scripts - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 with: repository: equipez/github_actions_scripts ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS diff --git a/.github/workflows/profile_intrinsic_linalg.yml b/.github/workflows/profile_intrinsic_linalg.yml index 15a52c48ff..5e3690005f 100644 --- a/.github/workflows/profile_intrinsic_linalg.yml +++ b/.github/workflows/profile_intrinsic_linalg.yml @@ -71,14 +71,14 @@ jobs: swap-storage: false # Important, or the runner may be shut down due to memory starvation. - name: Clone Repository (Latest) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref == '' with: fetch-depth: 2 # checkout fetches only one commit by default. Set it to two for the `norma` test ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS submodules: recursive - name: Clone Repository (Custom Ref) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref != '' with: fetch-depth: 2 # checkout fetches only one commit by default. Set it to two for the `norma` test @@ -93,7 +93,7 @@ jobs: run: export SWAP_SIZE=20 && bash .github/scripts/misc_setup - name: Clone MatCUTEst - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 with: ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS repository: matcutest/matcutest_compiled @@ -286,7 +286,7 @@ jobs: needs: test steps: - name: Clone the GitHub actions scripts - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 with: repository: equipez/github_actions_scripts ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS diff --git a/.github/workflows/profile_lincoa_small.yml b/.github/workflows/profile_lincoa_small.yml index d38dc313f4..f9c462192d 100644 --- a/.github/workflows/profile_lincoa_small.yml +++ b/.github/workflows/profile_lincoa_small.yml @@ -54,14 +54,14 @@ jobs: swap-storage: false # Important, or the runner may be shut down due to memory starvation. - name: Clone Repository (Latest) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref == '' with: fetch-depth: 2 # checkout fetches only one commit by default. Set it to two for the `norma` test ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS submodules: recursive - name: Clone Repository (Custom Ref) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref != '' with: fetch-depth: 2 # checkout fetches only one commit by default. Set it to two for the `norma` test @@ -76,7 +76,7 @@ jobs: run: bash .github/scripts/misc_setup - name: Clone MatCUTEst - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 with: ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS repository: matcutest/matcutest_compiled diff --git a/.github/workflows/profile_lincoa_small_sq.yml b/.github/workflows/profile_lincoa_small_sq.yml index 792e99e673..4756fd0363 100644 --- a/.github/workflows/profile_lincoa_small_sq.yml +++ b/.github/workflows/profile_lincoa_small_sq.yml @@ -53,14 +53,14 @@ jobs: swap-storage: false # Important, or the runner may be shut down due to memory starvation. - name: Clone Repository (Latest) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref == '' with: fetch-depth: 2 # checkout fetches only one commit by default. Set it to two for the `norma` test ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS submodules: recursive - name: Clone Repository (Custom Ref) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref != '' with: fetch-depth: 2 # checkout fetches only one commit by default. Set it to two for the `norma` test @@ -75,7 +75,7 @@ jobs: run: bash .github/scripts/misc_setup - name: Clone MatCUTEst - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 with: ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS repository: matcutest/matcutest_compiled @@ -248,7 +248,7 @@ jobs: needs: test steps: - name: Clone the GitHub actions scripts - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 with: repository: equipez/github_actions_scripts ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS diff --git a/.github/workflows/profile_newuoa_small.yml b/.github/workflows/profile_newuoa_small.yml index 5292a5ff08..6cbd7c7b88 100644 --- a/.github/workflows/profile_newuoa_small.yml +++ b/.github/workflows/profile_newuoa_small.yml @@ -51,14 +51,14 @@ jobs: swap-storage: false # Important, or the runner may be shut down due to memory starvation. - name: Clone Repository (Latest) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref == '' with: fetch-depth: 2 # checkout fetches only one commit by default. Set it to two for the `norma` test ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS submodules: recursive - name: Clone Repository (Custom Ref) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref != '' with: fetch-depth: 2 # checkout fetches only one commit by default. Set it to two for the `norma` test @@ -73,7 +73,7 @@ jobs: run: bash .github/scripts/misc_setup - name: Clone MatCUTEst - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 with: ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS repository: matcutest/matcutest_compiled diff --git a/.github/workflows/profile_newuoa_small_sq.yml b/.github/workflows/profile_newuoa_small_sq.yml index c26f3b94e7..ce7f4006ce 100644 --- a/.github/workflows/profile_newuoa_small_sq.yml +++ b/.github/workflows/profile_newuoa_small_sq.yml @@ -52,14 +52,14 @@ jobs: swap-storage: false # Important, or the runner may be shut down due to memory starvation. - name: Clone Repository (Latest) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref == '' with: fetch-depth: 2 # checkout fetches only one commit by default. Set it to two for the `norma` test ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS submodules: recursive - name: Clone Repository (Custom Ref) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref != '' with: fetch-depth: 2 # checkout fetches only one commit by default. Set it to two for the `norma` test @@ -74,7 +74,7 @@ jobs: run: bash .github/scripts/misc_setup - name: Clone MatCUTEst - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 with: ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS repository: matcutest/matcutest_compiled @@ -221,7 +221,7 @@ jobs: needs: test steps: - name: Clone the GitHub actions scripts - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 with: repository: equipez/github_actions_scripts ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS diff --git a/.github/workflows/profile_npt.yml b/.github/workflows/profile_npt.yml index fbfd56b5c5..f49993d091 100644 --- a/.github/workflows/profile_npt.yml +++ b/.github/workflows/profile_npt.yml @@ -93,13 +93,13 @@ jobs: swap-storage: false # Important, or the runner may be shut down due to memory starvation. - name: Clone Repository (Latest) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref == '' with: ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS submodules: recursive - name: Clone Repository (Custom Ref) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} @@ -110,7 +110,7 @@ jobs: run: bash .github/scripts/misc_setup - name: Clone MatCUTEst - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 with: ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS repository: matcutest/matcutest_compiled @@ -294,7 +294,7 @@ jobs: needs: test steps: - name: Clone the GitHub actions scripts - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 with: repository: equipez/github_actions_scripts ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS diff --git a/.github/workflows/profile_prima_small.yml b/.github/workflows/profile_prima_small.yml index 2463004a20..4e2718df62 100644 --- a/.github/workflows/profile_prima_small.yml +++ b/.github/workflows/profile_prima_small.yml @@ -53,13 +53,13 @@ jobs: swap-storage: false # Important, or the runner may be shut down due to memory starvation. - name: Clone Repository (Latest) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref == '' with: ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS submodules: recursive - name: Clone Repository (Custom Ref) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} @@ -70,7 +70,7 @@ jobs: run: bash .github/scripts/misc_setup - name: Clone MatCUTEst - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 with: ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS repository: matcutest/matcutest_compiled diff --git a/.github/workflows/profile_quadruple.yml b/.github/workflows/profile_quadruple.yml index 8b765091c5..fc8e4e4ea5 100644 --- a/.github/workflows/profile_quadruple.yml +++ b/.github/workflows/profile_quadruple.yml @@ -51,13 +51,13 @@ jobs: swap-storage: false # Important, or the runner may be shut down due to memory starvation. - name: Clone Repository (Latest) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref == '' with: ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS submodules: recursive - name: Clone Repository (Custom Ref) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} @@ -68,7 +68,7 @@ jobs: run: bash .github/scripts/misc_setup - name: Clone MatCUTEst - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 with: ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS repository: matcutest/matcutest_compiled @@ -225,7 +225,7 @@ jobs: needs: test steps: - name: Clone the GitHub actions scripts - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 with: repository: equipez/github_actions_scripts ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS diff --git a/.github/workflows/profile_rescue_idz_classical.yml b/.github/workflows/profile_rescue_idz_classical.yml index 7116d2b969..465fc49088 100644 --- a/.github/workflows/profile_rescue_idz_classical.yml +++ b/.github/workflows/profile_rescue_idz_classical.yml @@ -52,13 +52,13 @@ jobs: swap-storage: false # Important, or the runner may be shut down due to memory starvation. - name: Clone Repository (Latest) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref == '' with: ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS submodules: recursive - name: Clone Repository (Custom Ref) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} @@ -69,7 +69,7 @@ jobs: run: export SWAP_SIZE=20 && bash .github/scripts/misc_setup - name: Clone MatCUTEst - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 with: ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS repository: matcutest/matcutest_compiled diff --git a/.github/workflows/profile_rescue_idz_modernized.yml b/.github/workflows/profile_rescue_idz_modernized.yml index 41e5338b2e..1304a14c61 100644 --- a/.github/workflows/profile_rescue_idz_modernized.yml +++ b/.github/workflows/profile_rescue_idz_modernized.yml @@ -52,13 +52,13 @@ jobs: swap-storage: false # Important, or the runner may be shut down due to memory starvation. - name: Clone Repository (Latest) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref == '' with: ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS submodules: recursive - name: Clone Repository (Custom Ref) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} @@ -69,7 +69,7 @@ jobs: run: export SWAP_SIZE=20 && bash .github/scripts/misc_setup - name: Clone MatCUTEst - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 with: ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS repository: matcutest/matcutest_compiled diff --git a/.github/workflows/profile_single.yml b/.github/workflows/profile_single.yml index 340e9bbcf5..832c1db127 100644 --- a/.github/workflows/profile_single.yml +++ b/.github/workflows/profile_single.yml @@ -52,13 +52,13 @@ jobs: swap-storage: false # Important, or the runner may be shut down due to memory starvation. - name: Clone Repository (Latest) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref == '' with: ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS submodules: recursive - name: Clone Repository (Custom Ref) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} @@ -69,7 +69,7 @@ jobs: run: bash .github/scripts/misc_setup - name: Clone MatCUTEst - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 with: ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS repository: matcutest/matcutest_compiled diff --git a/.github/workflows/profile_uobyqa_small.yml b/.github/workflows/profile_uobyqa_small.yml index 594eb0a759..73d5cfc626 100644 --- a/.github/workflows/profile_uobyqa_small.yml +++ b/.github/workflows/profile_uobyqa_small.yml @@ -51,14 +51,14 @@ jobs: swap-storage: false # Important, or the runner may be shut down due to memory starvation. - name: Clone Repository (Latest) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref == '' with: fetch-depth: 2 # checkout fetches only one commit by default. Set it to two for the `norma` test ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS submodules: recursive - name: Clone Repository (Custom Ref) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref != '' with: fetch-depth: 2 # checkout fetches only one commit by default. Set it to two for the `norma` test @@ -73,7 +73,7 @@ jobs: run: bash .github/scripts/misc_setup - name: Clone MatCUTEst - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 with: ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS repository: matcutest/matcutest_compiled diff --git a/.github/workflows/profile_uobyqa_small_sq.yml b/.github/workflows/profile_uobyqa_small_sq.yml index 1dd3e865a2..e38d923103 100644 --- a/.github/workflows/profile_uobyqa_small_sq.yml +++ b/.github/workflows/profile_uobyqa_small_sq.yml @@ -54,14 +54,14 @@ jobs: swap-storage: false # Important, or the runner may be shut down due to memory starvation. - name: Clone Repository (Latest) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref == '' with: fetch-depth: 2 # checkout fetches only one commit by default. Set it to two for the `norma` test ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS submodules: recursive - name: Clone Repository (Custom Ref) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref != '' with: fetch-depth: 2 # checkout fetches only one commit by default. Set it to two for the `norma` test @@ -76,7 +76,7 @@ jobs: run: bash .github/scripts/misc_setup - name: Clone MatCUTEst - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 with: ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS repository: matcutest/matcutest_compiled @@ -223,7 +223,7 @@ jobs: needs: test steps: - name: Clone the GitHub actions scripts - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 with: repository: equipez/github_actions_scripts ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS diff --git a/.github/workflows/recursive_test_matlab.yml b/.github/workflows/recursive_test_matlab.yml index 77db5dccae..7c7ad522f2 100644 --- a/.github/workflows/recursive_test_matlab.yml +++ b/.github/workflows/recursive_test_matlab.yml @@ -67,14 +67,14 @@ jobs: swap-storage: false # Important, or the runner may be shut down due to memory starvation. - name: Clone Repository (Latest) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref == '' with: submodules: recursive # ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS # As of 231227, checkout with ssh fails frequently on Windows runners. - name: Clone Repository (Custom Ref) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} @@ -231,7 +231,7 @@ jobs: needs: test steps: - name: Clone the GitHub actions scripts - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 with: repository: equipez/github_actions_scripts ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS diff --git a/.github/workflows/recursive_test_matlab_mac.yml b/.github/workflows/recursive_test_matlab_mac.yml index db1a47e73c..5104826f5b 100644 --- a/.github/workflows/recursive_test_matlab_mac.yml +++ b/.github/workflows/recursive_test_matlab_mac.yml @@ -25,14 +25,14 @@ jobs: steps: - name: Clone Repository (Latest) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref == '' with: # ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS # As of 231227, checkout with ssh fails frequently on Windows runners. submodules: recursive - name: Clone Repository (Custom Ref) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} @@ -61,7 +61,7 @@ jobs: needs: test steps: - name: Clone the GitHub actions scripts - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 with: repository: equipez/github_actions_scripts ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS diff --git a/.github/workflows/stress_test_fortran.yml b/.github/workflows/stress_test_fortran.yml index 34955294e3..cb9179f011 100644 --- a/.github/workflows/stress_test_fortran.yml +++ b/.github/workflows/stress_test_fortran.yml @@ -62,13 +62,13 @@ jobs: swap-storage: false # Important, or the runner may be shut down due to memory starvation. - name: Clone Repository (Latest) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref == '' with: ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS submodules: recursive - name: Clone Repository (Custom Ref) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} @@ -143,7 +143,7 @@ jobs: needs: test steps: - name: Clone the GitHub actions scripts - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 with: repository: equipez/github_actions_scripts ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS diff --git a/.github/workflows/stress_test_matlab.yml b/.github/workflows/stress_test_matlab.yml index 3b7b5ac690..dd878808d1 100644 --- a/.github/workflows/stress_test_matlab.yml +++ b/.github/workflows/stress_test_matlab.yml @@ -63,14 +63,14 @@ jobs: swap-storage: false # Important, or the runner may be shut down due to memory starvation. - name: Clone Repository (Latest) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref == '' with: submodules: recursive # ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS # As of 231227, checkout with ssh fails frequently on Windows runners. - name: Clone Repository (Custom Ref) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} @@ -209,7 +209,7 @@ jobs: needs: test steps: - name: Clone the GitHub actions scripts - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 with: repository: equipez/github_actions_scripts ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS diff --git a/.github/workflows/stress_test_matlab_mac.yml b/.github/workflows/stress_test_matlab_mac.yml index d77ebc5f77..ff68243a42 100644 --- a/.github/workflows/stress_test_matlab_mac.yml +++ b/.github/workflows/stress_test_matlab_mac.yml @@ -36,14 +36,14 @@ jobs: steps: - name: Clone Repository (Latest) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref == '' with: # ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS # As of 231227, checkout with ssh fails frequently on Windows runners. submodules: recursive - name: Clone Repository (Custom Ref) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} @@ -77,7 +77,7 @@ jobs: needs: test steps: - name: Clone the GitHub actions scripts - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 with: repository: equipez/github_actions_scripts ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS diff --git a/.github/workflows/test_aflang.yml b/.github/workflows/test_aflang.yml index b286e90429..f1912eb7fd 100644 --- a/.github/workflows/test_aflang.yml +++ b/.github/workflows/test_aflang.yml @@ -49,13 +49,13 @@ jobs: swap-storage: false # Important, or the runner may be shut down due to memory starvation. - name: Clone Repository (Latest) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref == '' with: ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS submodules: recursive - name: Clone Repository (Custom Ref) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} @@ -111,7 +111,7 @@ jobs: needs: test steps: - name: Clone the GitHub actions scripts - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 with: repository: equipez/github_actions_scripts ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS diff --git a/.github/workflows/test_armflang_pi.yml b/.github/workflows/test_armflang_pi.yml index e534c8efbb..2fd09094bd 100644 --- a/.github/workflows/test_armflang_pi.yml +++ b/.github/workflows/test_armflang_pi.yml @@ -34,13 +34,13 @@ jobs: steps: - name: Clone Repository (Latest) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref == '' with: ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS submodules: recursive - name: Clone Repository (Custom Ref) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} @@ -90,7 +90,7 @@ jobs: needs: test steps: - name: Clone the GitHub actions scripts - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 with: repository: equipez/github_actions_scripts ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS diff --git a/.github/workflows/test_flang.yml b/.github/workflows/test_flang.yml index 68f1ddd49c..c1b3936a68 100644 --- a/.github/workflows/test_flang.yml +++ b/.github/workflows/test_flang.yml @@ -52,13 +52,13 @@ jobs: swap-storage: false # Important, or the runner may be shut down due to memory starvation. - name: Clone Repository (Latest) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref == '' with: ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS submodules: recursive - name: Clone Repository (Custom Ref) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} @@ -127,7 +127,7 @@ jobs: needs: test steps: - name: Clone the GitHub actions scripts - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 with: repository: equipez/github_actions_scripts ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS diff --git a/.github/workflows/test_flang_pi.yml b/.github/workflows/test_flang_pi.yml index 7dc019791f..e2f6da5969 100644 --- a/.github/workflows/test_flang_pi.yml +++ b/.github/workflows/test_flang_pi.yml @@ -34,13 +34,13 @@ jobs: steps: - name: Clone Repository (Latest) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref == '' with: ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS submodules: recursive - name: Clone Repository (Custom Ref) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} @@ -85,7 +85,7 @@ jobs: needs: test steps: - name: Clone the GitHub actions scripts - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 with: repository: equipez/github_actions_scripts ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS diff --git a/.github/workflows/test_g95.yml b/.github/workflows/test_g95.yml index 37d772ef99..43d982c2c6 100644 --- a/.github/workflows/test_g95.yml +++ b/.github/workflows/test_g95.yml @@ -46,13 +46,13 @@ jobs: swap-storage: false # Important, or the runner may be shut down due to memory starvation. - name: Clone Repository (Latest) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref == '' with: ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS submodules: recursive - name: Clone Repository (Custom Ref) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} diff --git a/.github/workflows/test_gfortran.yml b/.github/workflows/test_gfortran.yml index 1c38c41861..a885aaf3b6 100644 --- a/.github/workflows/test_gfortran.yml +++ b/.github/workflows/test_gfortran.yml @@ -58,14 +58,14 @@ jobs: swap-storage: false # Important, or the runner may be shut down due to memory starvation. - name: Clone Repository (Latest) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref == '' with: submodules: recursive # ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS # As of 231227, checkout with ssh fails frequently on Windows runners. - name: Clone Repository (Custom Ref) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} @@ -168,7 +168,7 @@ jobs: needs: test steps: - name: Clone the GitHub actions scripts - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 with: repository: equipez/github_actions_scripts ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS diff --git a/.github/workflows/test_gfortran_pi64.yml b/.github/workflows/test_gfortran_pi64.yml index 7b5423fb5b..89dc623502 100644 --- a/.github/workflows/test_gfortran_pi64.yml +++ b/.github/workflows/test_gfortran_pi64.yml @@ -31,13 +31,13 @@ jobs: steps: - name: Clone Repository (Latest) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref == '' with: ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS submodules: recursive - name: Clone Repository (Custom Ref) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} @@ -99,7 +99,7 @@ jobs: needs: test steps: - name: Clone the GitHub actions scripts - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 with: repository: equipez/github_actions_scripts ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS diff --git a/.github/workflows/test_ifort.yml b/.github/workflows/test_ifort.yml index b6e58b40fb..2ab03b311b 100644 --- a/.github/workflows/test_ifort.yml +++ b/.github/workflows/test_ifort.yml @@ -52,13 +52,13 @@ jobs: swap-storage: false # Important, or the runner may be shut down due to memory starvation. - name: Clone Repository (Latest) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref == '' with: ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS submodules: recursive - name: Clone Repository (Custom Ref) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} @@ -138,7 +138,7 @@ jobs: needs: test steps: - name: Clone the GitHub actions scripts - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 with: repository: equipez/github_actions_scripts ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS diff --git a/.github/workflows/test_ifx.yml b/.github/workflows/test_ifx.yml index e547116e59..4b7ae62115 100644 --- a/.github/workflows/test_ifx.yml +++ b/.github/workflows/test_ifx.yml @@ -53,13 +53,13 @@ jobs: swap-storage: false # Important, or the runner may be shut down due to memory starvation. - name: Clone Repository (Latest) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref == '' with: ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS submodules: recursive - name: Clone Repository (Custom Ref) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} @@ -136,7 +136,7 @@ jobs: needs: test steps: - name: Clone the GitHub actions scripts - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 with: repository: equipez/github_actions_scripts ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS diff --git a/.github/workflows/test_matlab.yml b/.github/workflows/test_matlab.yml index 2671c4a0d8..bd487f13bb 100644 --- a/.github/workflows/test_matlab.yml +++ b/.github/workflows/test_matlab.yml @@ -82,14 +82,14 @@ jobs: swap-storage: false # Important, or the runner may be shut down due to memory starvation. - name: Clone Repository (Latest) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref == '' with: submodules: recursive # ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS # As of 231227, checkout with ssh fails frequently on Windows runners. - name: Clone Repository (Custom Ref) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} diff --git a/.github/workflows/test_matlab_linux.yml b/.github/workflows/test_matlab_linux.yml index b25863be94..810d5b3407 100644 --- a/.github/workflows/test_matlab_linux.yml +++ b/.github/workflows/test_matlab_linux.yml @@ -48,14 +48,14 @@ jobs: swap-storage: false # Important, or the runner may be shut down due to memory starvation. - name: Clone Repository (Latest) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref == '' with: submodules: recursive # ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS # As of 231227, checkout with ssh fails frequently on Windows runners. - name: Clone Repository (Custom Ref) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} diff --git a/.github/workflows/test_matlab_mac.yml b/.github/workflows/test_matlab_mac.yml index 3e67c96ec5..288c331330 100644 --- a/.github/workflows/test_matlab_mac.yml +++ b/.github/workflows/test_matlab_mac.yml @@ -30,14 +30,14 @@ jobs: steps: - name: Clone Repository (Latest) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref == '' with: submodules: recursive # ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS # As of 231227, checkout with ssh fails frequently on Windows runners. - name: Clone Repository (Custom Ref) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} @@ -78,7 +78,7 @@ jobs: needs: test steps: - name: Clone the GitHub actions scripts - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 with: repository: equipez/github_actions_scripts ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS diff --git a/.github/workflows/test_matlab_mac_intel.yml b/.github/workflows/test_matlab_mac_intel.yml index 485eeca463..922aaefb4b 100644 --- a/.github/workflows/test_matlab_mac_intel.yml +++ b/.github/workflows/test_matlab_mac_intel.yml @@ -32,14 +32,14 @@ jobs: run: git config --global http.postBuffer 1048576000 && git config --global core.compression 0 - name: Clone Repository (Latest) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref == '' with: submodules: recursive # ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS # As of 231227, checkout with ssh fails frequently on Windows runners. - name: Clone Repository (Custom Ref) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} diff --git a/.github/workflows/test_matlab_windows.yml b/.github/workflows/test_matlab_windows.yml index 46b7d96c8c..92171cdf26 100644 --- a/.github/workflows/test_matlab_windows.yml +++ b/.github/workflows/test_matlab_windows.yml @@ -32,14 +32,14 @@ jobs: run: git config --global http.postBuffer 1048576000 && git config --global core.compression 0 - name: Clone Repository (Latest) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref == '' with: submodules: recursive # ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS # As of 231227, checkout with ssh fails frequently on Windows runners. - name: Clone Repository (Custom Ref) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} diff --git a/.github/workflows/test_nagfor.yml b/.github/workflows/test_nagfor.yml index 422b7ab501..e529ff58df 100644 --- a/.github/workflows/test_nagfor.yml +++ b/.github/workflows/test_nagfor.yml @@ -32,13 +32,13 @@ jobs: steps: - name: Clone Repository (Latest) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref == '' with: ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS submodules: recursive - name: Clone Repository (Custom Ref) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} @@ -84,7 +84,7 @@ jobs: needs: test steps: - name: Clone the GitHub actions scripts - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 with: repository: equipez/github_actions_scripts ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS diff --git a/.github/workflows/test_nagfor_mac.yml b/.github/workflows/test_nagfor_mac.yml index 59e5cb19c7..97899c7ab8 100644 --- a/.github/workflows/test_nagfor_mac.yml +++ b/.github/workflows/test_nagfor_mac.yml @@ -31,13 +31,13 @@ jobs: steps: - name: Clone Repository (Latest) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref == '' with: ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS submodules: recursive - name: Clone Repository (Custom Ref) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} @@ -83,7 +83,7 @@ jobs: needs: test steps: - name: Clone the GitHub actions scripts - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 with: repository: equipez/github_actions_scripts ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS diff --git a/.github/workflows/test_nvfortran.yml b/.github/workflows/test_nvfortran.yml index db61154086..06439a27d7 100644 --- a/.github/workflows/test_nvfortran.yml +++ b/.github/workflows/test_nvfortran.yml @@ -50,13 +50,13 @@ jobs: swap-storage: false # Important, or the runner may be shut down due to memory starvation. - name: Clone Repository (Latest) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref == '' with: ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS submodules: recursive - name: Clone Repository (Custom Ref) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} @@ -113,7 +113,7 @@ jobs: needs: test steps: - name: Clone the GitHub actions scripts - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 with: repository: equipez/github_actions_scripts ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS diff --git a/.github/workflows/test_nvfortran_pi.yml b/.github/workflows/test_nvfortran_pi.yml index 041b76b38d..cbaa332b34 100644 --- a/.github/workflows/test_nvfortran_pi.yml +++ b/.github/workflows/test_nvfortran_pi.yml @@ -34,13 +34,13 @@ jobs: steps: - name: Clone Repository (Latest) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref == '' with: ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS submodules: recursive - name: Clone Repository (Custom Ref) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} @@ -97,7 +97,7 @@ jobs: needs: test steps: - name: Clone the GitHub actions scripts - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 with: repository: equipez/github_actions_scripts ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS diff --git a/.github/workflows/test_pyprima.yml b/.github/workflows/test_pyprima.yml index 11065e004a..6af3592705 100644 --- a/.github/workflows/test_pyprima.yml +++ b/.github/workflows/test_pyprima.yml @@ -23,7 +23,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 - name: Setup Python uses: actions/setup-python@v6 diff --git a/.github/workflows/test_sunf95.yml b/.github/workflows/test_sunf95.yml index 42dbb39905..8421c70514 100644 --- a/.github/workflows/test_sunf95.yml +++ b/.github/workflows/test_sunf95.yml @@ -52,13 +52,13 @@ jobs: swap-storage: false # Important, or the runner may be shut down due to memory starvation. - name: Clone Repository (Latest) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref == '' with: ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS submodules: recursive - name: Clone Repository (Custom Ref) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} @@ -115,7 +115,7 @@ jobs: needs: test steps: - name: Clone the GitHub actions scripts - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 with: repository: equipez/github_actions_scripts ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS diff --git a/.github/workflows/verify_archiva.yml b/.github/workflows/verify_archiva.yml index a051c0f056..0d81ac33d5 100644 --- a/.github/workflows/verify_archiva.yml +++ b/.github/workflows/verify_archiva.yml @@ -60,13 +60,13 @@ jobs: swap-storage: false # Important, or the runner may be shut down due to memory starvation. - name: Clone Repository (Latest) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref == '' with: ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS submodules: recursive - name: Clone Repository (Custom Ref) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} @@ -77,7 +77,7 @@ jobs: run: bash .github/scripts/misc_setup - name: Clone MatCUTEst - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 with: ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS repository: matcutest/matcutest_compiled @@ -141,7 +141,7 @@ jobs: needs: test steps: - name: Clone the GitHub actions scripts - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 with: repository: equipez/github_actions_scripts ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS diff --git a/.github/workflows/verify_big.yml b/.github/workflows/verify_big.yml index 17744451a4..7cefe3c045 100644 --- a/.github/workflows/verify_big.yml +++ b/.github/workflows/verify_big.yml @@ -53,13 +53,13 @@ jobs: swap-storage: false # Important, or the runner may be shut down due to memory starvation. - name: Clone Repository (Latest) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref == '' with: ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS submodules: recursive - name: Clone Repository (Custom Ref) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} @@ -70,7 +70,7 @@ jobs: run: bash .github/scripts/misc_setup - name: Clone MatCUTEst - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 with: ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS repository: matcutest/matcutest_compiled @@ -216,7 +216,7 @@ jobs: needs: test steps: - name: Clone the GitHub actions scripts - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 with: repository: equipez/github_actions_scripts ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS diff --git a/.github/workflows/verify_large.yml b/.github/workflows/verify_large.yml index 7647d60b8d..523bec4213 100644 --- a/.github/workflows/verify_large.yml +++ b/.github/workflows/verify_large.yml @@ -53,13 +53,13 @@ jobs: swap-storage: false # Important, or the runner may be shut down due to memory starvation. - name: Clone Repository (Latest) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref == '' with: ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS submodules: recursive - name: Clone Repository (Custom Ref) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} @@ -70,7 +70,7 @@ jobs: run: bash .github/scripts/misc_setup - name: Clone MatCUTEst - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 with: ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS repository: matcutest/matcutest_compiled @@ -217,7 +217,7 @@ jobs: needs: test steps: - name: Clone the GitHub actions scripts - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 with: repository: equipez/github_actions_scripts ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS diff --git a/.github/workflows/verify_small.yml b/.github/workflows/verify_small.yml index 6985d0a492..7a417372eb 100644 --- a/.github/workflows/verify_small.yml +++ b/.github/workflows/verify_small.yml @@ -52,13 +52,13 @@ jobs: swap-storage: false # Important, or the runner may be shut down due to memory starvation. - name: Clone Repository (Latest) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref == '' with: ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS submodules: recursive - name: Clone Repository (Custom Ref) - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} @@ -69,7 +69,7 @@ jobs: run: export SWAP_SIZE=20 && bash .github/scripts/misc_setup - name: Clone MatCUTEst - uses: actions/checkout@v6.0.1 + uses: actions/checkout@v6.0.2 with: ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS repository: matcutest/matcutest_compiled