Skip to content

Commit 55f3606

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 341318d commit 55f3606

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/CI.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262

6363
steps:
6464
- name: Checkout code
65-
uses: actions/checkout@v5
65+
uses: actions/checkout@v6
6666

6767
- name: Setup Fortran compiler
6868
uses: fortran-lang/[email protected]
@@ -275,7 +275,7 @@ jobs:
275275
gcc_v: [11,12,13]
276276

277277
steps:
278-
- uses: actions/checkout@v5
278+
- uses: actions/checkout@v6
279279

280280
- name: Download Artifacts
281281
id: download_windows_artifacts
@@ -392,7 +392,7 @@ jobs:
392392
env:
393393
DEPLOY_BRANCH: ${{ secrets.DEPLOY_BRANCH && contains(github.ref, secrets.DEPLOY_BRANCH) && 1 || 0 }}
394394

395-
- uses: actions/checkout@v5
395+
- uses: actions/checkout@v6
396396
if: ${{ github.event_name == 'push' }}
397397

398398
- name: Download Artifacts

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
build-and-deploy:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v5
9+
- uses: actions/checkout@v6
1010
- uses: actions/setup-python@v6
1111
with:
1212
python-version: '3.x'

.github/workflows/meta.yml

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

5757
steps:
5858
- name: Checkout code
59-
uses: actions/checkout@v5
59+
uses: actions/checkout@v6
6060

6161
- name: (Ubuntu) setup gcc version
6262
if: contains(matrix.os,'ubuntu')

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
FORMAT: ${{ matrix.format }}
1818
steps:
1919
- name: Checkout code
20-
uses: actions/checkout@v5
20+
uses: actions/checkout@v6
2121
with:
2222
fetch-depth: 0
2323

@@ -44,7 +44,7 @@ jobs:
4444
runs-on: ubuntu-latest
4545
steps:
4646
- name: Checkout code
47-
uses: actions/checkout@v5
47+
uses: actions/checkout@v6
4848
with:
4949
fetch-depth: 0
5050

@@ -124,7 +124,7 @@ jobs:
124124
env:
125125
DEPLOY_BRANCH: ${{ secrets.DEPLOY_BRANCH && contains(github.ref, secrets.DEPLOY_BRANCH) && 1 || 0 }}
126126

127-
- uses: actions/checkout@v5
127+
- uses: actions/checkout@v6
128128
if: ${{ github.event_name == 'push' }}
129129

130130
- name: Download Artifacts

0 commit comments

Comments
 (0)