Skip to content

Commit ee621d6

Browse files
Bump actions/checkout from 4 to 5 (#860)
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] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent d9674a7 commit ee621d6

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

.github/workflows/create-conda-envs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
python: [3.7, 3.8, 3.9]
2626
steps:
2727
- name: checkout cylc-doc
28-
uses: actions/checkout@v4
28+
uses: actions/checkout@v5
2929

3030
- name: configure python
3131
uses: actions/setup-python@v5

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
uses: cylc/release-actions/configure-git@v1
7474

7575
- name: checkout cylc-doc
76-
uses: actions/checkout@v4
76+
uses: actions/checkout@v5
7777
with:
7878
ref: ${{ inputs.cylc-flow-tag }}
7979
path: docs
@@ -109,7 +109,7 @@ jobs:
109109
working_directory: ./docs
110110

111111
- name: checkout gh-pages
112-
uses: actions/checkout@v4
112+
uses: actions/checkout@v5
113113
with:
114114
ref: gh-pages
115115
path: gh-pages

.github/workflows/nightly.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
python-version: '3.9'
6868

6969
- name: checkout cylc-doc
70-
uses: actions/checkout@v4
70+
uses: actions/checkout@v5
7171
with:
7272
ref: ${{ fromJson(env.META_DICT)[matrix.meta_release]['cylc/cylc-doc'] }}
7373
path: docs
@@ -93,7 +93,7 @@ jobs:
9393
metomi_rose_opts: ''
9494

9595
- name: checkout gh-pages branch
96-
uses: actions/checkout@v4
96+
uses: actions/checkout@v5
9797
with:
9898
ref: gh-pages
9999
path: gh-pages

.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.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
node-version: '16'
4444

4545
- name: checkout cylc-doc
46-
uses: actions/checkout@v4
46+
uses: actions/checkout@v5
4747

4848
- name: install dependencies
4949
uses: ./.github/actions/install-dependencies

.github/workflows/undeploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,12 @@ jobs:
4747
uses: cylc/release-actions/configure-git@v1
4848

4949
- name: checkout cylc-doc
50-
uses: actions/checkout@v4
50+
uses: actions/checkout@v5
5151
with:
5252
path: docs
5353

5454
- name: checkout gh-pages
55-
uses: actions/checkout@v4
55+
uses: actions/checkout@v5
5656
with:
5757
ref: gh-pages
5858
path: gh-pages

.github/workflows/update_copyright.yml

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

3131
- name: Checkout repo
32-
uses: actions/checkout@v4
32+
uses: actions/checkout@v5
3333

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

0 commit comments

Comments
 (0)