From 194d24717bfb64ab7585296a6c0c55768f2246c5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 21 Nov 2025 07:02:42 +0000 Subject: [PATCH] Bump actions/checkout from 5.0.0 to 6.0.0 Bumps [actions/checkout](https://github.com/actions/checkout) from 5.0.0 to 6.0.0. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v5.0.0...v6.0.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 6.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build_python.yml | 6 +++--- .github/workflows/cmake.yml | 10 +++++----- .github/workflows/cmake_mac.yml | 6 +++--- .github/workflows/cmake_mac_nagfor.yml | 6 +++--- .github/workflows/cmake_nagfor.yml | 6 +++--- .github/workflows/cmake_pi.yml | 6 +++--- .github/workflows/compile_mex.yml | 8 ++++---- .github/workflows/lint_hosted.yml | 6 +++--- .github/workflows/lint_nagfor.yml | 6 +++--- .github/workflows/parallel_test_matlab.yml | 6 +++--- .github/workflows/parallel_test_matlab_mac.yml | 6 +++--- .github/workflows/profile_all.yml | 6 +++--- .github/workflows/profile_all_sq.yml | 8 ++++---- .github/workflows/profile_bobyqa_small.yml | 6 +++--- .github/workflows/profile_bobyqa_small_sq.yml | 8 ++++---- .github/workflows/profile_cobyla_small.yml | 6 +++--- .github/workflows/profile_cobyla_small_sq.yml | 8 ++++---- .github/workflows/profile_compiler_options.yml | 8 ++++---- .github/workflows/profile_infnan.yml | 8 ++++---- .github/workflows/profile_integer_kind.yml | 8 ++++---- .github/workflows/profile_intrinsic_linalg.yml | 8 ++++---- .github/workflows/profile_lincoa_small.yml | 6 +++--- .github/workflows/profile_lincoa_small_sq.yml | 8 ++++---- .github/workflows/profile_newuoa_small.yml | 6 +++--- .github/workflows/profile_newuoa_small_sq.yml | 8 ++++---- .github/workflows/profile_npt.yml | 8 ++++---- .github/workflows/profile_prima_small.yml | 6 +++--- .github/workflows/profile_quadruple.yml | 8 ++++---- .github/workflows/profile_rescue_idz_classical.yml | 6 +++--- .github/workflows/profile_rescue_idz_modernized.yml | 6 +++--- .github/workflows/profile_single.yml | 6 +++--- .github/workflows/profile_uobyqa_small.yml | 6 +++--- .github/workflows/profile_uobyqa_small_sq.yml | 8 ++++---- .github/workflows/recursive_test_matlab.yml | 6 +++--- .github/workflows/recursive_test_matlab_mac.yml | 6 +++--- .github/workflows/stress_test_fortran.yml | 6 +++--- .github/workflows/stress_test_matlab.yml | 6 +++--- .github/workflows/stress_test_matlab_mac.yml | 6 +++--- .github/workflows/test_aflang.yml | 6 +++--- .github/workflows/test_armflang_pi.yml | 6 +++--- .github/workflows/test_flang.yml | 6 +++--- .github/workflows/test_flang_pi.yml | 6 +++--- .github/workflows/test_g95.yml | 4 ++-- .github/workflows/test_gfortran.yml | 6 +++--- .github/workflows/test_gfortran_pi64.yml | 6 +++--- .github/workflows/test_ifort.yml | 6 +++--- .github/workflows/test_ifx.yml | 6 +++--- .github/workflows/test_matlab.yml | 4 ++-- .github/workflows/test_matlab_linux.yml | 4 ++-- .github/workflows/test_matlab_mac.yml | 6 +++--- .github/workflows/test_matlab_mac_intel.yml | 4 ++-- .github/workflows/test_matlab_windows.yml | 4 ++-- .github/workflows/test_nagfor.yml | 6 +++--- .github/workflows/test_nagfor_mac.yml | 6 +++--- .github/workflows/test_nvfortran.yml | 6 +++--- .github/workflows/test_nvfortran_pi.yml | 6 +++--- .github/workflows/test_pyprima.yml | 2 +- .github/workflows/test_sunf95.yml | 6 +++--- .github/workflows/verify_archiva.yml | 8 ++++---- .github/workflows/verify_big.yml | 8 ++++---- .github/workflows/verify_large.yml | 8 ++++---- .github/workflows/verify_small.yml | 6 +++--- 62 files changed, 197 insertions(+), 197 deletions(-) diff --git a/.github/workflows/build_python.yml b/.github/workflows/build_python.yml index 6b243da245..4e768502d3 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + - uses: actions/checkout@v6.0.0 - name: Build sdist run: pipx run build --sdist diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 9027e85d4c..4af7a07094 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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 5452f18a05..789ea84057 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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 66cf4c6c2d..a2c11b3c7f 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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 0aca26d2ea..5e46582908 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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 a0ac1842bd..372bc41f0c 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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 9afe71f1d5..b1f3759467 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + # uses: actions/checkout@v6.0.0 # if: github.event.inputs.git-ref == '' # with: # submodules: recursive # - name: Clone Repository (Custom Ref) - # uses: actions/checkout@v5.0.0 + # uses: actions/checkout@v6.0.0 # 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 3d04e38ffd..012444f5d9 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} @@ -130,7 +130,7 @@ jobs: needs: test steps: - name: Clone the GitHub actions scripts - uses: actions/checkout@v5.0.0 + uses: actions/checkout@v6.0.0 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 82dfec93ce..edb0d02f23 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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 8c7f2f333c..828b6f81b9 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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 823450204a..04923d4844 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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 5c1d75b2f7..72bb9ffee3 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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 073e229abf..5f9dc924e4 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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 d86b295540..0173831fb6 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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 da76487d27..f506846263 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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 3caa1f97b0..65c30506a9 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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 f5bf4955fa..abdb6bda85 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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 ec199085af..25db8cc31a 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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 43937766a1..21c6fdee39 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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 b4fd5b67f7..5caad68833 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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 7147fb22b7..7456b45740 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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 97ea86a690..a5091f5c8e 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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 27e80f5daa..7f6f91e308 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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 12318b5ddd..9f5fcc1df1 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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 e7bc4c3745..67331a48c4 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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 e37c08ee09..15568edc7d 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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 d971242694..8cd929bc37 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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 aaa6d1b02f..b1f224c0a3 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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 5227e6e05d..0f40e189c0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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 0957edec12..816d0b3116 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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 1e64789be6..b6df7bc88d 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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 12bb99961c..688772734d 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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 0ee2c5f66e..42a2d99df4 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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 c4a7187182..780cc1838c 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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 f0819f983d..e4eec47fe9 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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 4edc3a0a9e..0d34282733 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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 46cf323097..87f07d61c2 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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 ef77ed605f..27987c0720 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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 18260bc287..3f961582bc 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} @@ -106,7 +106,7 @@ jobs: needs: test steps: - name: Clone the GitHub actions scripts - uses: actions/checkout@v5.0.0 + uses: actions/checkout@v6.0.0 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 4c73b13d2b..83d6cd347a 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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 e65fbee6e9..4f0d6f4776 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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 7ccba4ac0f..698aa8da3d 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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 c28853a935..c5cda4272a 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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 c88bcbe428..3287cbf1a7 100644 --- a/.github/workflows/test_gfortran.yml +++ b/.github/workflows/test_gfortran.yml @@ -65,14 +65,14 @@ jobs: swap-storage: false # Important, or the runner may be shut down due to memory starvation. - name: Clone Repository (Latest) - uses: actions/checkout@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} @@ -191,7 +191,7 @@ jobs: needs: test steps: - name: Clone the GitHub actions scripts - uses: actions/checkout@v5.0.0 + uses: actions/checkout@v6.0.0 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 00e093d7a5..2e96126b72 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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 24c298bcb6..e37d293860 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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 5e593194c8..ca58436a5f 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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 325045eb6a..120dcd32d9 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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 c8a91b6cc8..0e75f43f31 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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 eb83444301..d13280f505 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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 114ed3d7c5..708b0c7bfa 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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 d0ed18e19a..38d8d55c8d 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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 e15e344943..0958c356e6 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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 da5eaa3b58..c3bd21fbc5 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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 99c2c246fa..53942bdd21 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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 3d6027856f..76035784f0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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 89b7fa6237..1d1acd78d1 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@v5.0.0 + uses: actions/checkout@v6.0.0 - name: Setup Python uses: actions/setup-python@v6 diff --git a/.github/workflows/test_sunf95.yml b/.github/workflows/test_sunf95.yml index 315902922b..336cd8bf88 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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 f87b05be45..85dd8d615b 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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 a998be283d..20e13dd9b6 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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 d0a43199d0..4084633021 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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 4e816b0488..f61a67d0f6 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 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@v5.0.0 + uses: actions/checkout@v6.0.0 with: ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS repository: matcutest/matcutest_compiled