From 15f1e839d75596eb1f678fcd0508e973765a82b5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 3 Jul 2026 13:40:40 +0000 Subject: [PATCH] Bump actions/checkout from 2 to 7 in the github-actions group Bumps the github-actions group with 1 update: [actions/checkout](https://github.com/actions/checkout). Updates `actions/checkout` from 2 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/v2...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/bechmark.yml | 6 +++--- .github/workflows/build.yml | 2 +- .github/workflows/mutation.yml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/bechmark.yml b/.github/workflows/bechmark.yml index 3e4b5fd..b95648f 100644 --- a/.github/workflows/bechmark.yml +++ b/.github/workflows/bechmark.yml @@ -39,7 +39,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4 + uses: actions/checkout@v7 - name: Check if we need to create a baseline for a PR run: | @@ -50,7 +50,7 @@ jobs: fi - name: "Baseline creation: Checkout default branch." - uses: actions/checkout@v4 + uses: actions/checkout@v7 if: ${{ env.WITH_BENCH_BASELINE == '1' }} with: ref: ${{ github.event.repository.default_branch }} @@ -72,7 +72,7 @@ jobs: run: echo "WITH_BENCH_BASELINE=0" >> $GITHUB_ENV - name: "Pull request: Checkout head." - uses: actions/checkout@v4 + uses: actions/checkout@v7 if: ${{ github.event_name == 'pull_request' }} with: ref: ${{ github.event.pull_request.head.sha }} diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c0234dd..db86553 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -32,7 +32,7 @@ jobs: php: [ 81, 82, 83, 84 ] steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v7 - name: Build working-directory: ./tests run: docker compose build diff --git a/.github/workflows/mutation.yml b/.github/workflows/mutation.yml index 2f41299..eb530f2 100644 --- a/.github/workflows/mutation.yml +++ b/.github/workflows/mutation.yml @@ -42,7 +42,7 @@ jobs: steps: - name: Checkout. - uses: actions/checkout@v3 + uses: actions/checkout@v7 - name: Install PHP with extensions. uses: shivammathur/setup-php@v2