From 9e5bfaa892df5a1c01b424a3e3f04023f5e4ed88 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 24 Jul 2026 07:03:44 +0000 Subject: [PATCH] Bump actions/checkout from 6.0.2 to 7.0.1 Bumps [actions/checkout](https://github.com/actions/checkout) from 6.0.2 to 7.0.1. - [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/v6.0.2...v7.0.1) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 7.0.1 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/actionlint.yml | 2 +- .github/workflows/build_python.yml | 6 +++--- .github/workflows/cmake.yml | 8 ++++---- .github/workflows/cmake_mac_nagfor.yml | 4 ++-- .github/workflows/cmake_nagfor.yml | 4 ++-- .github/workflows/compile_mex.yml | 8 ++++---- .github/workflows/lint_hosted.yml | 4 ++-- .github/workflows/lint_nagfor.yml | 4 ++-- .github/workflows/parallel_test_matlab.yml | 4 ++-- .github/workflows/parallel_test_matlab_mac.yml | 4 ++-- .github/workflows/profile_all.yml | 6 +++--- .github/workflows/profile_all_sq.yml | 6 +++--- .github/workflows/profile_bobyqa_small.yml | 6 +++--- .github/workflows/profile_bobyqa_small_sq.yml | 6 +++--- .github/workflows/profile_cobyla_small.yml | 6 +++--- .github/workflows/profile_cobyla_small_sq.yml | 6 +++--- .github/workflows/profile_compiler_options.yml | 6 +++--- .github/workflows/profile_infnan.yml | 6 +++--- .github/workflows/profile_integer_kind.yml | 6 +++--- .github/workflows/profile_intrinsic_linalg.yml | 6 +++--- .github/workflows/profile_lincoa_small.yml | 6 +++--- .github/workflows/profile_lincoa_small_sq.yml | 6 +++--- .github/workflows/profile_newuoa_small.yml | 6 +++--- .github/workflows/profile_newuoa_small_sq.yml | 6 +++--- .github/workflows/profile_npt.yml | 6 +++--- .github/workflows/profile_prima_small.yml | 6 +++--- .github/workflows/profile_quadruple.yml | 6 +++--- .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 | 6 +++--- .github/workflows/recursive_test_matlab.yml | 4 ++-- .github/workflows/recursive_test_matlab_mac.yml | 4 ++-- .github/workflows/stress_test_fortran.yml | 4 ++-- .github/workflows/stress_test_matlab.yml | 4 ++-- .github/workflows/stress_test_matlab_mac.yml | 4 ++-- .github/workflows/test_aflang.yml | 4 ++-- .github/workflows/test_armflang.yml | 4 ++-- .github/workflows/test_flang.yml | 4 ++-- .github/workflows/test_g95.yml | 4 ++-- .github/workflows/test_gfortran.yml | 4 ++-- .github/workflows/test_ifort.yml | 4 ++-- .github/workflows/test_ifx.yml | 4 ++-- .github/workflows/test_matlab.yml | 4 ++-- .github/workflows/test_matlab_linux.yml | 4 ++-- .github/workflows/test_matlab_mac.yml | 4 ++-- .github/workflows/test_matlab_mac_intel.yml | 4 ++-- .github/workflows/test_matlab_windows.yml | 4 ++-- .github/workflows/test_nagfor.yml | 4 ++-- .github/workflows/test_nagfor_mac.yml | 4 ++-- .github/workflows/test_nvfortran.yml | 4 ++-- .github/workflows/test_pyprima.yml | 2 +- .github/workflows/test_sunf95.yml | 4 ++-- .github/workflows/verify_archiva_antiqua.yml | 6 +++--- .github/workflows/verify_archiva_media.yml | 6 +++--- .github/workflows/verify_archiva_nova.yml | 6 +++--- .github/workflows/verify_big.yml | 6 +++--- .github/workflows/verify_large.yml | 6 +++--- .github/workflows/verify_small.yml | 6 +++--- 60 files changed, 151 insertions(+), 151 deletions(-) diff --git a/.github/workflows/actionlint.yml b/.github/workflows/actionlint.yml index f09bee394a..e984c7468f 100644 --- a/.github/workflows/actionlint.yml +++ b/.github/workflows/actionlint.yml @@ -17,7 +17,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v6.0.2 + uses: actions/checkout@v7.0.1 - name: actionlint id: actionlint #optional, id required only when outputs are used in the workflow steps later diff --git a/.github/workflows/build_python.yml b/.github/workflows/build_python.yml index bb7f2fbe29..e159fa6cbd 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.2 + uses: actions/checkout@v7.0.1 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.2 + uses: actions/checkout@v7.0.1 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} @@ -99,7 +99,7 @@ jobs: name: Build source distribution runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6.0.2 + - uses: actions/checkout@v7.0.1 - name: Build sdist run: pipx run build --sdist diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 64a37d8faf..92bd95aec9 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -105,7 +105,7 @@ jobs: run: git config --global http.postBuffer 1048576000 && git config --global core.compression 0 - name: Clone Repository (Latest) - uses: actions/checkout@v6.0.2 + uses: actions/checkout@v7.0.1 if: github.event.inputs.git-ref == '' with: # ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS @@ -114,7 +114,7 @@ jobs: fetch-depth: 0 fetch-tags: true - name: Clone Repository (Custom Ref) - uses: actions/checkout@v6.0.2 + uses: actions/checkout@v7.0.1 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} @@ -192,13 +192,13 @@ jobs: steps: - name: Clone Repository (Latest) - uses: actions/checkout@v6.0.2 + uses: actions/checkout@v7.0.1 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.2 + uses: actions/checkout@v7.0.1 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} diff --git a/.github/workflows/cmake_mac_nagfor.yml b/.github/workflows/cmake_mac_nagfor.yml index d919a4cc2e..b84af6e2fd 100644 --- a/.github/workflows/cmake_mac_nagfor.yml +++ b/.github/workflows/cmake_mac_nagfor.yml @@ -37,7 +37,7 @@ jobs: steps: - name: Clone Repository (Latest) - uses: actions/checkout@v6.0.2 + uses: actions/checkout@v7.0.1 if: github.event.inputs.git-ref == '' with: # ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS @@ -46,7 +46,7 @@ jobs: fetch-depth: 0 fetch-tags: true - name: Clone Repository (Custom Ref) - uses: actions/checkout@v6.0.2 + uses: actions/checkout@v7.0.1 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} diff --git a/.github/workflows/cmake_nagfor.yml b/.github/workflows/cmake_nagfor.yml index f93fa5bd14..54f60a6ce5 100644 --- a/.github/workflows/cmake_nagfor.yml +++ b/.github/workflows/cmake_nagfor.yml @@ -39,13 +39,13 @@ jobs: steps: - name: Clone Repository (Latest) - uses: actions/checkout@v6.0.2 + uses: actions/checkout@v7.0.1 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.2 + uses: actions/checkout@v7.0.1 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} diff --git a/.github/workflows/compile_mex.yml b/.github/workflows/compile_mex.yml index 8a06aa1e60..b3b63c10f3 100644 --- a/.github/workflows/compile_mex.yml +++ b/.github/workflows/compile_mex.yml @@ -87,14 +87,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.2 + uses: actions/checkout@v7.0.1 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.2 + uses: actions/checkout@v7.0.1 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} @@ -191,12 +191,12 @@ jobs: # steps: # - name: Clone Repository (Latest) - # uses: actions/checkout@v6.0.2 + # uses: actions/checkout@v7.0.1 # if: github.event.inputs.git-ref == '' # with: # submodules: recursive # - name: Clone Repository (Custom Ref) - # uses: actions/checkout@v6.0.2 + # uses: actions/checkout@v7.0.1 # 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 f363ed250a..478ad34c46 100644 --- a/.github/workflows/lint_hosted.yml +++ b/.github/workflows/lint_hosted.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.2 + uses: actions/checkout@v7.0.1 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.2 + uses: actions/checkout@v7.0.1 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} diff --git a/.github/workflows/lint_nagfor.yml b/.github/workflows/lint_nagfor.yml index 75e1dcf2f3..47d87bdb94 100644 --- a/.github/workflows/lint_nagfor.yml +++ b/.github/workflows/lint_nagfor.yml @@ -30,13 +30,13 @@ jobs: steps: - name: Clone Repository (Latest) - uses: actions/checkout@v6.0.2 + uses: actions/checkout@v7.0.1 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.2 + uses: actions/checkout@v7.0.1 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} diff --git a/.github/workflows/parallel_test_matlab.yml b/.github/workflows/parallel_test_matlab.yml index dcad978d65..e11b4a58e9 100644 --- a/.github/workflows/parallel_test_matlab.yml +++ b/.github/workflows/parallel_test_matlab.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.2 + uses: actions/checkout@v7.0.1 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.2 + uses: actions/checkout@v7.0.1 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} diff --git a/.github/workflows/parallel_test_matlab_mac.yml b/.github/workflows/parallel_test_matlab_mac.yml index cb8c82eee5..9f52e6b1c8 100644 --- a/.github/workflows/parallel_test_matlab_mac.yml +++ b/.github/workflows/parallel_test_matlab_mac.yml @@ -40,14 +40,14 @@ jobs: steps: - name: Clone Repository (Latest) - uses: actions/checkout@v6.0.2 + uses: actions/checkout@v7.0.1 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.2 + uses: actions/checkout@v7.0.1 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} diff --git a/.github/workflows/profile_all.yml b/.github/workflows/profile_all.yml index 1cb3139f39..cbf015a60c 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.2 + uses: actions/checkout@v7.0.1 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.2 + uses: actions/checkout@v7.0.1 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 @@ -105,7 +105,7 @@ jobs: run: export SWAP_SIZE=20 && bash .github/scripts/misc_setup - name: Clone MatCUTEst - uses: actions/checkout@v6.0.2 + uses: actions/checkout@v7.0.1 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 4930c5e818..b2387f4fb4 100644 --- a/.github/workflows/profile_all_sq.yml +++ b/.github/workflows/profile_all_sq.yml @@ -77,14 +77,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.2 + uses: actions/checkout@v7.0.1 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.2 + uses: actions/checkout@v7.0.1 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.2 + uses: actions/checkout@v7.0.1 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.yml b/.github/workflows/profile_bobyqa_small.yml index 0b993ef7d9..898765b676 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.2 + uses: actions/checkout@v7.0.1 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.2 + uses: actions/checkout@v7.0.1 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.2 + uses: actions/checkout@v7.0.1 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 31665fdcd1..32d2e61eaf 100644 --- a/.github/workflows/profile_bobyqa_small_sq.yml +++ b/.github/workflows/profile_bobyqa_small_sq.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.2 + uses: actions/checkout@v7.0.1 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.2 + uses: actions/checkout@v7.0.1 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.2 + uses: actions/checkout@v7.0.1 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.yml b/.github/workflows/profile_cobyla_small.yml index b24b31dfa0..088b94d271 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.2 + uses: actions/checkout@v7.0.1 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.2 + uses: actions/checkout@v7.0.1 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 @@ -83,7 +83,7 @@ jobs: run: bash .github/scripts/misc_setup - name: Clone MatCUTEst - uses: actions/checkout@v6.0.2 + uses: actions/checkout@v7.0.1 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 87147eb21a..7d02a561b0 100644 --- a/.github/workflows/profile_cobyla_small_sq.yml +++ b/.github/workflows/profile_cobyla_small_sq.yml @@ -55,14 +55,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.2 + uses: actions/checkout@v7.0.1 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.2 + uses: actions/checkout@v7.0.1 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.2 + uses: actions/checkout@v7.0.1 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_compiler_options.yml b/.github/workflows/profile_compiler_options.yml index 83502bebdb..55df506c3b 100644 --- a/.github/workflows/profile_compiler_options.yml +++ b/.github/workflows/profile_compiler_options.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.2 + uses: actions/checkout@v7.0.1 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.2 + uses: actions/checkout@v7.0.1 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.2 + uses: actions/checkout@v7.0.1 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_infnan.yml b/.github/workflows/profile_infnan.yml index 1bb0a2ecca..482915b4fd 100644 --- a/.github/workflows/profile_infnan.yml +++ b/.github/workflows/profile_infnan.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.2 + uses: actions/checkout@v7.0.1 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.2 + uses: actions/checkout@v7.0.1 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.2 + uses: actions/checkout@v7.0.1 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_integer_kind.yml b/.github/workflows/profile_integer_kind.yml index 3cbeac3e40..9fd4358e46 100644 --- a/.github/workflows/profile_integer_kind.yml +++ b/.github/workflows/profile_integer_kind.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.2 + uses: actions/checkout@v7.0.1 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.2 + uses: actions/checkout@v7.0.1 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.2 + uses: actions/checkout@v7.0.1 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_intrinsic_linalg.yml b/.github/workflows/profile_intrinsic_linalg.yml index fdc2d3a390..332beaf4c9 100644 --- a/.github/workflows/profile_intrinsic_linalg.yml +++ b/.github/workflows/profile_intrinsic_linalg.yml @@ -70,14 +70,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.2 + uses: actions/checkout@v7.0.1 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.2 + uses: actions/checkout@v7.0.1 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.2 + uses: actions/checkout@v7.0.1 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.yml b/.github/workflows/profile_lincoa_small.yml index 606588a133..4907901859 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.2 + uses: actions/checkout@v7.0.1 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.2 + uses: actions/checkout@v7.0.1 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 @@ -77,7 +77,7 @@ jobs: run: bash .github/scripts/misc_setup - name: Clone MatCUTEst - uses: actions/checkout@v6.0.2 + uses: actions/checkout@v7.0.1 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 00bce53917..dc6f7cf232 100644 --- a/.github/workflows/profile_lincoa_small_sq.yml +++ b/.github/workflows/profile_lincoa_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.2 + uses: actions/checkout@v7.0.1 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.2 + uses: actions/checkout@v7.0.1 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.2 + uses: actions/checkout@v7.0.1 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.yml b/.github/workflows/profile_newuoa_small.yml index 30c0427776..643cfeb404 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.2 + uses: actions/checkout@v7.0.1 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.2 + uses: actions/checkout@v7.0.1 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.2 + uses: actions/checkout@v7.0.1 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 01b2f461e1..51530e1a2c 100644 --- a/.github/workflows/profile_newuoa_small_sq.yml +++ b/.github/workflows/profile_newuoa_small_sq.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.2 + uses: actions/checkout@v7.0.1 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.2 + uses: actions/checkout@v7.0.1 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.2 + uses: actions/checkout@v7.0.1 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_npt.yml b/.github/workflows/profile_npt.yml index 4ba70eeddc..23bb1ee951 100644 --- a/.github/workflows/profile_npt.yml +++ b/.github/workflows/profile_npt.yml @@ -102,13 +102,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.2 + uses: actions/checkout@v7.0.1 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.2 + uses: actions/checkout@v7.0.1 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} @@ -120,7 +120,7 @@ jobs: run: bash .github/scripts/misc_setup - name: Clone MatCUTEst - uses: actions/checkout@v6.0.2 + uses: actions/checkout@v7.0.1 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_prima_small.yml b/.github/workflows/profile_prima_small.yml index 30bc0c8e45..da3e28580b 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.2 + uses: actions/checkout@v7.0.1 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.2 + uses: actions/checkout@v7.0.1 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.2 + uses: actions/checkout@v7.0.1 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 8b5ff319ce..7e51406995 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.2 + uses: actions/checkout@v7.0.1 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.2 + uses: actions/checkout@v7.0.1 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.2 + uses: actions/checkout@v7.0.1 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_classical.yml b/.github/workflows/profile_rescue_idz_classical.yml index 3b147e54d7..7ddc7329e5 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.2 + uses: actions/checkout@v7.0.1 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.2 + uses: actions/checkout@v7.0.1 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} @@ -70,7 +70,7 @@ jobs: run: export SWAP_SIZE=20 && bash .github/scripts/misc_setup - name: Clone MatCUTEst - uses: actions/checkout@v6.0.2 + uses: actions/checkout@v7.0.1 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 bc330d8265..c1ba9993c3 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.2 + uses: actions/checkout@v7.0.1 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.2 + uses: actions/checkout@v7.0.1 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} @@ -70,7 +70,7 @@ jobs: run: export SWAP_SIZE=20 && bash .github/scripts/misc_setup - name: Clone MatCUTEst - uses: actions/checkout@v6.0.2 + uses: actions/checkout@v7.0.1 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 7a81362e48..950a52e8f7 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.2 + uses: actions/checkout@v7.0.1 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.2 + uses: actions/checkout@v7.0.1 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.2 + uses: actions/checkout@v7.0.1 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 08725f856d..f50b5ca2c5 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.2 + uses: actions/checkout@v7.0.1 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.2 + uses: actions/checkout@v7.0.1 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.2 + uses: actions/checkout@v7.0.1 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 b9ac5d16c3..e4ca7cfca4 100644 --- a/.github/workflows/profile_uobyqa_small_sq.yml +++ b/.github/workflows/profile_uobyqa_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.2 + uses: actions/checkout@v7.0.1 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.2 + uses: actions/checkout@v7.0.1 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.2 + uses: actions/checkout@v7.0.1 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/recursive_test_matlab.yml b/.github/workflows/recursive_test_matlab.yml index 349b98ca5d..0704fd3edc 100644 --- a/.github/workflows/recursive_test_matlab.yml +++ b/.github/workflows/recursive_test_matlab.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.2 + uses: actions/checkout@v7.0.1 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.2 + uses: actions/checkout@v7.0.1 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} diff --git a/.github/workflows/recursive_test_matlab_mac.yml b/.github/workflows/recursive_test_matlab_mac.yml index 1186db1b0f..1b6f02dc1e 100644 --- a/.github/workflows/recursive_test_matlab_mac.yml +++ b/.github/workflows/recursive_test_matlab_mac.yml @@ -40,14 +40,14 @@ jobs: steps: - name: Clone Repository (Latest) - uses: actions/checkout@v6.0.2 + uses: actions/checkout@v7.0.1 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.2 + uses: actions/checkout@v7.0.1 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} diff --git a/.github/workflows/stress_test_fortran.yml b/.github/workflows/stress_test_fortran.yml index bd2c516605..b4f1c13a93 100644 --- a/.github/workflows/stress_test_fortran.yml +++ b/.github/workflows/stress_test_fortran.yml @@ -91,13 +91,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.2 + uses: actions/checkout@v7.0.1 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.2 + uses: actions/checkout@v7.0.1 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} diff --git a/.github/workflows/stress_test_matlab.yml b/.github/workflows/stress_test_matlab.yml index 29080a60e5..c87a4482f2 100644 --- a/.github/workflows/stress_test_matlab.yml +++ b/.github/workflows/stress_test_matlab.yml @@ -69,14 +69,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.2 + uses: actions/checkout@v7.0.1 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.2 + uses: actions/checkout@v7.0.1 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} diff --git a/.github/workflows/stress_test_matlab_mac.yml b/.github/workflows/stress_test_matlab_mac.yml index 84acfe20bb..06a4712365 100644 --- a/.github/workflows/stress_test_matlab_mac.yml +++ b/.github/workflows/stress_test_matlab_mac.yml @@ -35,14 +35,14 @@ jobs: steps: - name: Clone Repository (Latest) - uses: actions/checkout@v6.0.2 + uses: actions/checkout@v7.0.1 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.2 + uses: actions/checkout@v7.0.1 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} diff --git a/.github/workflows/test_aflang.yml b/.github/workflows/test_aflang.yml index c2a14e8540..5a0869536e 100644 --- a/.github/workflows/test_aflang.yml +++ b/.github/workflows/test_aflang.yml @@ -48,13 +48,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.2 + uses: actions/checkout@v7.0.1 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.2 + uses: actions/checkout@v7.0.1 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} diff --git a/.github/workflows/test_armflang.yml b/.github/workflows/test_armflang.yml index c3e7804f11..a4e3bd5352 100644 --- a/.github/workflows/test_armflang.yml +++ b/.github/workflows/test_armflang.yml @@ -48,13 +48,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.2 + uses: actions/checkout@v7.0.1 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.2 + uses: actions/checkout@v7.0.1 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} diff --git a/.github/workflows/test_flang.yml b/.github/workflows/test_flang.yml index 5a6e6c00e9..54b356dc18 100644 --- a/.github/workflows/test_flang.yml +++ b/.github/workflows/test_flang.yml @@ -53,7 +53,7 @@ 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.2 + uses: actions/checkout@v7.0.1 if: github.event.inputs.git-ref == '' with: @@ -61,7 +61,7 @@ jobs: # ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS # As of 260213, checkout with ssh fails on Windows arm runners due to "UNPROTECTED PRIVATE KEY FILE" - name: Clone Repository (Custom Ref) - uses: actions/checkout@v6.0.2 + uses: actions/checkout@v7.0.1 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} diff --git a/.github/workflows/test_g95.yml b/.github/workflows/test_g95.yml index 247336093e..8ca19295c0 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.2 + uses: actions/checkout@v7.0.1 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.2 + uses: actions/checkout@v7.0.1 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 18465790fb..f89465b7df 100644 --- a/.github/workflows/test_gfortran.yml +++ b/.github/workflows/test_gfortran.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.2 + uses: actions/checkout@v7.0.1 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.2 + uses: actions/checkout@v7.0.1 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} diff --git a/.github/workflows/test_ifort.yml b/.github/workflows/test_ifort.yml index a9e8f747b1..a8259ddf9f 100644 --- a/.github/workflows/test_ifort.yml +++ b/.github/workflows/test_ifort.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.2 + uses: actions/checkout@v7.0.1 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.2 + uses: actions/checkout@v7.0.1 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} diff --git a/.github/workflows/test_ifx.yml b/.github/workflows/test_ifx.yml index b53ce87f5f..30d74be138 100644 --- a/.github/workflows/test_ifx.yml +++ b/.github/workflows/test_ifx.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.2 + uses: actions/checkout@v7.0.1 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.2 + uses: actions/checkout@v7.0.1 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} diff --git a/.github/workflows/test_matlab.yml b/.github/workflows/test_matlab.yml index cbd8f7bca6..2eee57ba8d 100644 --- a/.github/workflows/test_matlab.yml +++ b/.github/workflows/test_matlab.yml @@ -81,14 +81,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.2 + uses: actions/checkout@v7.0.1 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.2 + uses: actions/checkout@v7.0.1 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 17eb1f4860..dc10f0e321 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.2 + uses: actions/checkout@v7.0.1 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.2 + uses: actions/checkout@v7.0.1 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 559085c015..52eb6230ef 100644 --- a/.github/workflows/test_matlab_mac.yml +++ b/.github/workflows/test_matlab_mac.yml @@ -29,14 +29,14 @@ jobs: steps: - name: Clone Repository (Latest) - uses: actions/checkout@v6.0.2 + uses: actions/checkout@v7.0.1 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.2 + uses: actions/checkout@v7.0.1 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} diff --git a/.github/workflows/test_matlab_mac_intel.yml b/.github/workflows/test_matlab_mac_intel.yml index b26a1d0527..090153c65e 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.2 + uses: actions/checkout@v7.0.1 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.2 + uses: actions/checkout@v7.0.1 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 d5b4792519..fbf8119032 100644 --- a/.github/workflows/test_matlab_windows.yml +++ b/.github/workflows/test_matlab_windows.yml @@ -49,14 +49,14 @@ jobs: run: git config --global http.postBuffer 1048576000 && git config --global core.compression 0 - name: Clone Repository (Latest) - uses: actions/checkout@v6.0.2 + uses: actions/checkout@v7.0.1 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.2 + uses: actions/checkout@v7.0.1 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 20b27ef7b3..fc038427b5 100644 --- a/.github/workflows/test_nagfor.yml +++ b/.github/workflows/test_nagfor.yml @@ -31,13 +31,13 @@ jobs: steps: - name: Clone Repository (Latest) - uses: actions/checkout@v6.0.2 + uses: actions/checkout@v7.0.1 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.2 + uses: actions/checkout@v7.0.1 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} diff --git a/.github/workflows/test_nagfor_mac.yml b/.github/workflows/test_nagfor_mac.yml index d49416693e..2b98885ad0 100644 --- a/.github/workflows/test_nagfor_mac.yml +++ b/.github/workflows/test_nagfor_mac.yml @@ -30,13 +30,13 @@ jobs: steps: - name: Clone Repository (Latest) - uses: actions/checkout@v6.0.2 + uses: actions/checkout@v7.0.1 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.2 + uses: actions/checkout@v7.0.1 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} diff --git a/.github/workflows/test_nvfortran.yml b/.github/workflows/test_nvfortran.yml index 7ab7681d1d..39f0b389ad 100644 --- a/.github/workflows/test_nvfortran.yml +++ b/.github/workflows/test_nvfortran.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.2 + uses: actions/checkout@v7.0.1 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.2 + uses: actions/checkout@v7.0.1 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} diff --git a/.github/workflows/test_pyprima.yml b/.github/workflows/test_pyprima.yml index 9062eea2a0..cf86d6dae5 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.2 + uses: actions/checkout@v7.0.1 - name: Setup Python diff --git a/.github/workflows/test_sunf95.yml b/.github/workflows/test_sunf95.yml index 3479d1aa51..7dea26c77c 100644 --- a/.github/workflows/test_sunf95.yml +++ b/.github/workflows/test_sunf95.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.2 + uses: actions/checkout@v7.0.1 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.2 + uses: actions/checkout@v7.0.1 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} diff --git a/.github/workflows/verify_archiva_antiqua.yml b/.github/workflows/verify_archiva_antiqua.yml index 0a570d44d0..2bbff7f7f9 100644 --- a/.github/workflows/verify_archiva_antiqua.yml +++ b/.github/workflows/verify_archiva_antiqua.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.2 + uses: actions/checkout@v7.0.1 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.2 + uses: actions/checkout@v7.0.1 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.2 + uses: actions/checkout@v7.0.1 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/verify_archiva_media.yml b/.github/workflows/verify_archiva_media.yml index 01cf6c7061..f6ce69a26a 100644 --- a/.github/workflows/verify_archiva_media.yml +++ b/.github/workflows/verify_archiva_media.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.2 + uses: actions/checkout@v7.0.1 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.2 + uses: actions/checkout@v7.0.1 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.2 + uses: actions/checkout@v7.0.1 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/verify_archiva_nova.yml b/.github/workflows/verify_archiva_nova.yml index 342f21420c..b3360160a4 100644 --- a/.github/workflows/verify_archiva_nova.yml +++ b/.github/workflows/verify_archiva_nova.yml @@ -59,13 +59,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.2 + uses: actions/checkout@v7.0.1 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.2 + uses: actions/checkout@v7.0.1 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.2 + uses: actions/checkout@v7.0.1 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/verify_big.yml b/.github/workflows/verify_big.yml index 8d2f29b0c1..a534980fef 100644 --- a/.github/workflows/verify_big.yml +++ b/.github/workflows/verify_big.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.2 + uses: actions/checkout@v7.0.1 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.2 + uses: actions/checkout@v7.0.1 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.2 + uses: actions/checkout@v7.0.1 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/verify_large.yml b/.github/workflows/verify_large.yml index ed3c85ba47..fa63eefeae 100644 --- a/.github/workflows/verify_large.yml +++ b/.github/workflows/verify_large.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.2 + uses: actions/checkout@v7.0.1 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.2 + uses: actions/checkout@v7.0.1 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.2 + uses: actions/checkout@v7.0.1 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/verify_small.yml b/.github/workflows/verify_small.yml index f254bf3922..9aee5a2720 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.2 + uses: actions/checkout@v7.0.1 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.2 + uses: actions/checkout@v7.0.1 if: github.event.inputs.git-ref != '' with: ref: ${{ github.event.inputs.git-ref }} @@ -70,7 +70,7 @@ jobs: run: export SWAP_SIZE=20 && bash .github/scripts/misc_setup - name: Clone MatCUTEst - uses: actions/checkout@v6.0.2 + uses: actions/checkout@v7.0.1 with: ssh-key: ${{ secrets.SSH_PRIVATE_KEY_ACT }} # This forces checkout to use SSH, not HTTPS repository: matcutest/matcutest_compiled