Skip to content

Commit 6729c59

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

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/check-whitespace.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
check-whitespace:
1717
runs-on: ubuntu-latest
1818
steps:
19-
- uses: actions/checkout@v5
19+
- uses: actions/checkout@v6
2020
with:
2121
fetch-depth: 0
2222

.github/workflows/integrate.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,20 +24,20 @@ jobs:
2424

2525
steps:
2626
- name: "Checkout php/doc-${{ matrix.language }}"
27-
uses: "actions/checkout@v5"
27+
uses: "actions/checkout@v6"
2828
with:
2929
path: "${{ matrix.language }}"
3030
repository: "php/doc-${{ matrix.language }}"
3131

3232
- name: "Checkout php/doc-en as fallback"
3333
if: "matrix.language != 'en'"
34-
uses: "actions/checkout@v5"
34+
uses: "actions/checkout@v6"
3535
with:
3636
path: "en"
3737
repository: "php/doc-en"
3838

3939
- name: "Checkout php/doc-base"
40-
uses: "actions/checkout@v5"
40+
uses: "actions/checkout@v6"
4141
with:
4242
path: "doc-base"
4343
repository: "php/doc-base"

0 commit comments

Comments
 (0)