Skip to content

Commit 1f4b5a6

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] <[email protected]>
1 parent 4aed966 commit 1f4b5a6

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/coding-standards.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222

2323
steps:
2424
- name: "Checkout"
25-
uses: "actions/checkout@v4"
25+
uses: "actions/checkout@v5"
2626

2727
- name: "Setup"
2828
uses: "./.github/actions/setup"
@@ -40,7 +40,7 @@ jobs:
4040

4141
steps:
4242
- name: "Checkout"
43-
uses: "actions/checkout@v4"
43+
uses: "actions/checkout@v5"
4444

4545
- name: "Setup"
4646
uses: "./.github/actions/setup"

.github/workflows/generator.yml

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

2323
steps:
2424
- name: "Checkout"
25-
uses: "actions/checkout@v4"
25+
uses: "actions/checkout@v5"
2626

2727
- name: "Setup"
2828
uses: "./.github/actions/setup"

.github/workflows/merge-up.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
steps:
1717
- name: Checkout
1818
id: checkout
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v5
2020
with:
2121
# fetch-depth 0 is required to fetch all branches, not just the branch being built
2222
fetch-depth: 0

.github/workflows/static-analysis.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_name == 'workflow_dispatch' && inputs.ref || github.ref }}
3434

.github/workflows/tests.yml

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

6060
steps:
6161
- name: "Checkout"
62-
uses: "actions/checkout@v4"
62+
uses: "actions/checkout@v5"
6363
with:
6464
fetch-depth: 2
6565
submodules: true

0 commit comments

Comments
 (0)