[DOC-CVS] [doc-en] dependabot/github_actions/actions/checkout-6: Bump actions/checkout from 5 to 6
[email protected] ("dependabot[bot] via GitHub")
| Newsgroups | php.doc.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: dependabot[bot] (dependabot[bot]) Committer: GitHub (web-flow) Pusher: dependabot[bot] Date: 2025-12-01T22:47:49Z Commit: https://github.com/php/doc-en/commit/f77a4b51fa61051582485834c814d19d8e41ce7d Raw diff: https://github.com/php/doc-en/commit/f77a4b51fa61051582485834c814d19d8e41ce7d.diff Bump actions/checkout from 5 to 6 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](https://github.com/actions/checkout/compare/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]> Changed paths: M .github/workflows/check-whitespace.yml M .github/workflows/integrate.yaml Diff: diff --git a/.github/workflows/check-whitespace.yml b/.github/workflows/check-whitespace.yml index e55281436937..91c5e6419562 100644 --- a/.github/workflows/check-whitespace.yml +++ b/.github/workflows/check-whitespace.yml @@ -16,7 +16,7 @@ jobs: check-whitespace: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 with: fetch-depth: 0 diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index 4c7c1d1bec63..e34b461a1da5 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -24,20 +24,20 @@ jobs: steps: - name: "Checkout php/doc-${{ matrix.language }}" - uses: "actions/checkout@v5" + uses: "actions/checkout@v6" with: path: "${{ matrix.language }}" repository: "php/doc-${{ matrix.language }}" - name: "Checkout php/doc-en as fallback" if: "matrix.language != 'en'" - uses: "actions/checkout@v5" + uses: "actions/checkout@v6" with: path: "en" repository: "php/doc-en" - name: "Checkout php/doc-base" - uses: "actions/checkout@v5" + uses: "actions/checkout@v6" with: path: "doc-base" repository: "php/doc-base"