From a69c32f472b95685326297685670585ea0c70317 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 19 Jun 2026 22:33:50 +0000 Subject: [PATCH] Bump actions/checkout from 6 to 7 Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7. - [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/v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/php-compatibility.yml | 2 +- .github/workflows/php-phpcs.yml | 2 +- .github/workflows/php-phpstan.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/php-compatibility.yml b/.github/workflows/php-compatibility.yml index 5bea2f8..adb95fa 100644 --- a/.github/workflows/php-compatibility.yml +++ b/.github/workflows/php-compatibility.yml @@ -10,7 +10,7 @@ jobs: # Checkout the repository # ------------------------------------------------------------------------------ - name: Checkout the repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 # ------------------------------------------------------------------------------ # Setup third party repos # ------------------------------------------------------------------------------ diff --git a/.github/workflows/php-phpcs.yml b/.github/workflows/php-phpcs.yml index 7ce4c16..b125cbb 100644 --- a/.github/workflows/php-phpcs.yml +++ b/.github/workflows/php-phpcs.yml @@ -10,7 +10,7 @@ jobs: # Checkout the repository # ------------------------------------------------------------------------------ - name: Checkout the repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: ref: ${{ github.event.pull_request.head.sha }} fetch-depth: 0 diff --git a/.github/workflows/php-phpstan.yml b/.github/workflows/php-phpstan.yml index 6569c42..769eb6a 100644 --- a/.github/workflows/php-phpstan.yml +++ b/.github/workflows/php-phpstan.yml @@ -19,7 +19,7 @@ jobs: # Checkout the repository # ------------------------------------------------------------------------------ - name: Checkout the repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 # ------------------------------------------------------------------------------ # Get the changed files in a space separated list. # ------------------------------------------------------------------------------