Skip to content

Commit 145e099

Browse files
Bump actions/checkout from 4 to 5 (#1753)
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 dfa8586 commit 145e099

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
@@ -24,7 +24,7 @@ jobs:
2424

2525
steps:
2626
- name: "Checkout"
27-
uses: "actions/checkout@v4"
27+
uses: "actions/checkout@v5"
2828

2929
- name: "Setup"
3030
uses: "./.github/actions/setup"
@@ -42,7 +42,7 @@ jobs:
4242

4343
steps:
4444
- name: "Checkout"
45-
uses: "actions/checkout@v4"
45+
uses: "actions/checkout@v5"
4646

4747
- name: "Setup"
4848
uses: "./.github/actions/setup"

.github/workflows/generator.yml

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

2525
steps:
2626
- name: "Checkout"
27-
uses: "actions/checkout@v4"
27+
uses: "actions/checkout@v5"
2828

2929
- name: "Setup"
3030
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
@@ -30,7 +30,7 @@ jobs:
3030

3131
steps:
3232
- name: "Checkout"
33-
uses: "actions/checkout@v4"
33+
uses: "actions/checkout@v5"
3434
with:
3535
ref: ${{ github.event_name == 'workflow_dispatch' && inputs.ref || github.ref }}
3636

.github/workflows/tests.yml

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

6262
steps:
6363
- name: "Checkout"
64-
uses: "actions/checkout@v4"
64+
uses: "actions/checkout@v5"
6565
with:
6666
fetch-depth: 2
6767
submodules: true

0 commit comments

Comments
 (0)