Skip to content

Commit 4d4a073

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

File tree

9 files changed

+13
-13
lines changed

9 files changed

+13
-13
lines changed

.github/workflows/1_create_release_pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
uses: cylc/release-actions/stage-1/sanitize-inputs@v1
3434

3535
- name: Checkout repo
36-
uses: actions/checkout@v4
36+
uses: actions/checkout@v5
3737
with:
3838
ref: ${{ env.BASE_REF }}
3939
fetch-depth: 0 # need to fetch all commits to check contributors

.github/workflows/2_auto_publish_release.yml

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

2424
- name: Checkout repo
25-
uses: actions/checkout@v4
25+
uses: actions/checkout@v5
2626
with:
2727
ref: ${{ env.MERGE_SHA }}
2828

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
python: '3.12'
3939
steps:
4040
- name: Checkout
41-
uses: actions/checkout@v4
41+
uses: actions/checkout@v5
4242

4343
- name: Configure Python
4444
uses: mamba-org/setup-micromamba@v2

.github/workflows/shortlog.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
timeout-minutes: 10
1515
steps:
1616
- name: Checkout
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v5
1818
with:
1919
fetch-depth: 0 # need to fetch all commits to check contributors
2020

.github/workflows/test-conda-builds.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
ENV_FILE: conda-environment.yml
3333
steps:
3434
- name: checkout
35-
uses: actions/checkout@v4
35+
uses: actions/checkout@v5
3636

3737
- name: modify conda env file
3838
run: |

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
timeout-minutes: 3
5454
steps:
5555
- name: Checkout
56-
uses: actions/checkout@v4
56+
uses: actions/checkout@v5
5757
with:
5858
ref: ${{ inputs.rose_ref || github.sha }}
5959

@@ -103,7 +103,7 @@ jobs:
103103

104104
steps:
105105
- name: Checkout
106-
uses: actions/checkout@v4
106+
uses: actions/checkout@v5
107107
with:
108108
ref: ${{ inputs.rose_ref || github.sha }}
109109
path: rose
@@ -161,7 +161,7 @@ jobs:
161161

162162
- name: Checkout FCM
163163
if: startsWith(matrix.os, 'ubuntu')
164-
uses: actions/checkout@v4
164+
uses: actions/checkout@v5
165165
with:
166166
repository: ${{ inputs.fcm_repo || 'metomi/fcm' }}
167167
ref: ${{ inputs.fcm_ref || 'master' }}
@@ -236,7 +236,7 @@ jobs:
236236
python-version: ['3']
237237
steps:
238238
- name: Checkout
239-
uses: actions/checkout@v4
239+
uses: actions/checkout@v5
240240
with:
241241
ref: ${{ inputs.rose_ref || github.sha }}
242242

.github/workflows/test_rsync_test_script.yml

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

2929
steps:
3030
- name: Checkout
31-
uses: actions/checkout@v4
31+
uses: actions/checkout@v5
3232
with:
3333
ref: ${{ github.event.inputs.rose_ref || github.sha }}
3434
path: rose

.github/workflows/update_copyright.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
steps:
3131

3232
- name: Checkout repo
33-
uses: actions/checkout@v4
33+
uses: actions/checkout@v5
3434

3535
- name: Configure git
3636
uses: cylc/release-actions/configure-git@v1

.github/workflows/update_tutorials.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ jobs:
2121
CYLC_REF: ${{ inputs.cylc_ref || 'master' }}
2222
steps:
2323
- name: Checkout rose
24-
uses: actions/checkout@v4
24+
uses: actions/checkout@v5
2525
with:
2626
ref: ${{ env.ROSE_REF }}
2727
path: rose
2828

2929
- name: Checkout cylc-flow
30-
uses: actions/checkout@v4
30+
uses: actions/checkout@v5
3131
with:
3232
repository: cylc/cylc-flow
3333
ref: ${{ env.CYLC_REF }}

0 commit comments

Comments
 (0)