Skip to content

Commit 85dfae5

Browse files
[TASK] Bump actions/checkout from 5 to 6 (#368)
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent a3987e9 commit 85dfae5

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/check_history.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
name: 'Check if PR is based on latest main'
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v5
12+
- uses: actions/checkout@v6
1313
with:
1414
ref: ${{ github.event.pull_request.head.sha }} # ensure we get the actual PR HEAD and not the merged result
1515
fetch-depth: 0 # ensure the complete Git history is available
@@ -36,7 +36,7 @@ jobs:
3636
name: 'Check if PR has a linear history without merges'
3737
runs-on: ubuntu-latest
3838
steps:
39-
- uses: actions/checkout@v5
39+
- uses: actions/checkout@v6
4040
with:
4141
ref: ${{ github.event.pull_request.head.sha }} # ensure we get the actual PR HEAD and not the merged result
4242
fetch-depth: 0 # ensure the complete Git history is available
@@ -60,7 +60,7 @@ jobs:
6060
name: 'Check if PR has any fixup! or WIP commits'
6161
runs-on: ubuntu-latest
6262
steps:
63-
- uses: actions/checkout@v5
63+
- uses: actions/checkout@v6
6464
with:
6565
ref: ${{ github.event.pull_request.head.sha }} # ensure we get the actual PR HEAD and not the merged result
6666
fetch-depth: 0 # ensure the complete Git history is available

.github/workflows/docs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
contents: write
1515

1616
steps:
17-
- uses: actions/checkout@v5
17+
- uses: actions/checkout@v6
1818

1919
- name: "Setup PHP"
2020
uses: shivammathur/setup-php@v2

.github/workflows/lint_test_pull_requests.yaml

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

4242
steps:
4343
- name: "Checkout"
44-
uses: actions/checkout@v5
44+
uses: actions/checkout@v6
4545

4646
# see https://github.com/shivammathur/setup-php
4747
- name: "Setup PHP"
@@ -71,7 +71,7 @@ jobs:
7171
- 8.3
7272
- 8.4
7373
steps:
74-
- uses: actions/checkout@v5
74+
- uses: actions/checkout@v6
7575
with:
7676
ref: ${{ github.event.pull_request.head.sha }}
7777

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
name: Split subtree packages/${{ matrix.package.path }}
4747

4848
steps:
49-
- uses: actions/checkout@v5
49+
- uses: actions/checkout@v6
5050
with:
5151
fetch-depth: 0 # ensure the complete Git history is available
5252

0 commit comments

Comments
 (0)