[DOC-CVS] [doc-en] dependabot/github_actions/actions/checkout-5: Bump actions/checkout from 4 to 5
[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-08-31T18:08:23Z Commit: https://github.com/php/doc-en/commit/125ecdb2c4a5324d14889e8e7fb1e2d19bbb6d0c Raw diff: https://github.com/php/doc-en/commit/125ecdb2c4a5324d14889e8e7fb1e2d19bbb6d0c.diff 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](https://github.com/actions/checkout/compare/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]> 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 dce72effb0af..e55281436937 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@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index af3d7bf435f9..57e2a2088b80 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@v4" + uses: "actions/checkout@v5" with: path: "${{ matrix.language }}" repository: "php/doc-${{ matrix.language }}" - name: "Checkout php/doc-en as fallback" if: "matrix.language != 'en'" - uses: "actions/checkout@v4" + uses: "actions/checkout@v5" with: path: "en" repository: "php/doc-en" - name: "Checkout php/doc-base" - uses: "actions/checkout@v4" + uses: "actions/checkout@v5" with: path: "doc-base" repository: "php/doc-base"