From 93fbebb3763e854995e13ef7cfe56c1e83618dd4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 24 Jun 2026 23:14:06 +0000 Subject: [PATCH] build(deps): bump the github-actions group with 2 updates Bumps the github-actions group with 2 updates: [actions/checkout](https://github.com/actions/checkout) and [actions/cache](https://github.com/actions/cache). Updates `actions/checkout` from 6.0.3 to 7.0.0 - [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/df4cb1c069e1874edd31b4311f1884172cec0e10...9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0) Updates `actions/cache` from 5 to 5.0.5 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v5...v5.0.5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 7.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/cache dependency-version: 5.0.5 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/tests.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 99f83bd..84f6c2a 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -21,7 +21,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6 + uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 with: persist-credentials: false @@ -41,14 +41,14 @@ jobs: node-version: 24 - name: Cache Composer Dependencies - uses: actions/cache@v5 + uses: actions/cache@v5.0.5 with: path: vendor key: ${{ runner.os }}-composer-${{ hashFiles('composer.lock') }} restore-keys: ${{ runner.os }}-composer- - name: Cache Bun Dependencies - uses: actions/cache@v5 + uses: actions/cache@v5.0.5 with: path: node_modules key: ${{ runner.os }}-bun-${{ hashFiles('bun.lockb') }} @@ -74,7 +74,7 @@ jobs: run: echo "version=$(bun pm ls 2>/dev/null | grep playwright | head -1 | sed 's/.*@//')" >> $GITHUB_OUTPUT - name: Cache Playwright Browsers - uses: actions/cache@v5 + uses: actions/cache@v5.0.5 id: playwright-cache with: path: ~/.cache/ms-playwright @@ -89,14 +89,14 @@ jobs: run: bunx playwright install-deps - name: Cache Rector - uses: actions/cache@v5 + uses: actions/cache@v5.0.5 with: path: /tmp/rector key: ${{ runner.os }}-rector-${{ hashFiles('composer.lock') }} restore-keys: ${{ runner.os }}-rector- - name: Cache PHPStan - uses: actions/cache@v5 + uses: actions/cache@v5.0.5 with: path: /tmp/phpstan key: ${{ runner.os }}-phpstan-${{ hashFiles('composer.lock') }}