From 8ddbd96b82bb1e0d1c97e8f11b1cc9503b8bc7c5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 24 Jun 2026 09:52:49 +0000 Subject: [PATCH] chore(deps): Bump actions/cache from 5 to 6 Bumps [actions/cache](https://github.com/actions/cache) from 5 to 6. - [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...v6) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/static-analysis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/static-analysis.yml b/.github/workflows/static-analysis.yml index 23dc843..a0af383 100644 --- a/.github/workflows/static-analysis.yml +++ b/.github/workflows/static-analysis.yml @@ -22,7 +22,7 @@ jobs: uses: ./.github/actions/setup-php-composer - name: Cache phpstan results - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: .phpstan-cache key: "result-cache-${{ github.run_id }}" # always write a new cache @@ -54,7 +54,7 @@ jobs: uses: ./.github/actions/setup-php-composer - name: Cache rector results - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: /tmp/rector key: "rector-cache-${{ github.run_id }}" # always write a new cache @@ -62,7 +62,7 @@ jobs: rector-cache- - name: Cache ecs results - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: /tmp/ecs key: "ecs-cache-${{ github.run_id }}" # always write a new cache