Skip to content

Commit d757208

Browse files
authored
Merge pull request #2281 from cylc/dependabot/github_actions/actions/checkout-5
Bump actions/checkout from 4 to 5
2 parents 6e150ec + b00f389 commit d757208

File tree

6 files changed

+9
-8
lines changed

6 files changed

+9
-8
lines changed

.github/workflows/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/create_release_pr.yml

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

2323
- name: Checkout repo
24-
uses: actions/checkout@v4
24+
uses: actions/checkout@v5
2525
with:
2626
ref: ${{ env.BASE_REF }}
2727
fetch-depth: 0 # need to fetch all commits to check contributors

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
timeout-minutes: 5
2020
steps:
2121
- name: Checkout
22-
uses: actions/checkout@v4
22+
uses: actions/checkout@v5
2323

2424
- name: Setup Node
2525
uses: actions/setup-node@v4
@@ -75,7 +75,7 @@ jobs:
7575
COVERAGE: true
7676
steps:
7777
- name: Checkout
78-
uses: actions/checkout@v4
78+
uses: actions/checkout@v5
7979

8080
- name: Setup Node
8181
uses: actions/setup-node@v4
@@ -120,7 +120,7 @@ jobs:
120120
timeout-minutes: 2
121121
steps:
122122
- name: Checkout
123-
uses: actions/checkout@v4
123+
uses: actions/checkout@v5
124124

125125
- name: Download coverage artifacts
126126
uses: actions/download-artifact@v5

.github/workflows/renovate_validate.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
pull_request:
55
paths:
66
- renovate.json
7+
- '.github/workflows/renovate_validate.yml'
78
workflow_dispatch:
89

910
concurrency:
@@ -19,7 +20,7 @@ jobs:
1920
timeout-minutes: 5
2021
steps:
2122
- name: Checkout
22-
uses: actions/checkout@v4
23+
uses: actions/checkout@v5
2324

2425
- name: Setup Node
2526
uses: actions/setup-node@v4

.github/workflows/shortlog.yml

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

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