Skip to content
This repository was archived by the owner on Dec 17, 2025. It is now read-only.

Commit 2661a75

Browse files
Bump actions/checkout from 5 to 6
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 1bd443c commit 2661a75

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

.github/workflows/CI_PublishTestPyPI.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
openblas_path: "/opt/homebrew/opt/openblas"
3131
py_tag: "cp310"
3232
steps:
33-
- uses: actions/checkout@v5
33+
- uses: actions/checkout@v6
3434
- name: remove python/.gitignore
3535
shell: bash
3636
run: |

.github/workflows/PublishPyPI.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
openblas_path: "/opt/homebrew/opt/openblas"
7676
py_tag: "cp313"
7777
steps:
78-
- uses: actions/checkout@v5
78+
- uses: actions/checkout@v6
7979
- name: remove python/.gitignore
8080
shell: bash
8181
run: |

.github/workflows/VersionConsistencyCheck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121

2222
steps:
2323
- name: Checkout code
24-
uses: actions/checkout@v5
24+
uses: actions/checkout@v6
2525

2626
- name: Set up Python
2727
uses: actions/setup-python@v6

.github/workflows/conda.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runner_label: macos-latest
2020

2121
steps:
22-
- uses: actions/checkout@v5
22+
- uses: actions/checkout@v6
2323
- uses: conda-incubator/setup-miniconda@v3
2424
with:
2525
auto-update-conda: true

.github/workflows/test_cxx_backend.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
os: [ubuntu-latest, macos-latest]
1616

1717
steps:
18-
- uses: actions/checkout@v5
18+
- uses: actions/checkout@v6
1919

2020
- name: Install dependencies (Ubuntu)
2121
if: runner.os == 'Linux'
@@ -46,7 +46,7 @@ jobs:
4646
timeout-minutes: 60 # Allow up to 60 minutes for ILP64 tests
4747

4848
steps:
49-
- uses: actions/checkout@v5
49+
- uses: actions/checkout@v6
5050

5151
- name: Install dependencies with ILP64 BLAS
5252
run: |

.github/workflows/test_fortran.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
name: Fortran with GCC/gfortran
1414

1515
steps:
16-
- uses: actions/checkout@v5
16+
- uses: actions/checkout@v6
1717

1818
- name: Install dependencies
1919
run: |
@@ -29,7 +29,7 @@ jobs:
2929
name: Fortran with Intel compilers
3030

3131
steps:
32-
- uses: actions/checkout@v5
32+
- uses: actions/checkout@v6
3333

3434
- name: Install Intel oneAPI
3535
run: |

.github/workflows/test_python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323

2424
steps:
2525
- name: Checkout code
26-
uses: actions/checkout@v5
26+
uses: actions/checkout@v6
2727

2828
- name: Install system dependencies (Ubuntu)
2929
if: runner.os == 'Linux'

0 commit comments

Comments
 (0)