From 3c38c3c6eccc33a10483b84448e307cff7053325 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 8 May 2026 09:35:37 +0000 Subject: [PATCH] chore(ci)(deps): bump actions/cache from 4 to 5 Bumps [actions/cache](https://github.com/actions/cache) from 4 to 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/v4...v5) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/code-style.yml | 2 +- .github/workflows/phpstan.yml | 4 ++-- .github/workflows/phpunit.yml | 2 +- .github/workflows/psalm.yml | 4 ++-- .github/workflows/rector.yml | 4 ++-- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/code-style.yml b/.github/workflows/code-style.yml index b600b21..df82dc9 100644 --- a/.github/workflows/code-style.yml +++ b/.github/workflows/code-style.yml @@ -30,7 +30,7 @@ jobs: run: echo "dir=$(composer config cache-files-dir)" >> "$GITHUB_OUTPUT" - name: Cache composer dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ${{ steps.composercache.outputs.dir }} key: ${{ runner.os }}-php-8.2-composer-${{ hashFiles('**/composer.lock') }} diff --git a/.github/workflows/phpstan.yml b/.github/workflows/phpstan.yml index df71553..3070c14 100644 --- a/.github/workflows/phpstan.yml +++ b/.github/workflows/phpstan.yml @@ -30,14 +30,14 @@ jobs: run: echo "dir=$(composer config cache-files-dir)" >> "$GITHUB_OUTPUT" - name: Cache composer dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ${{ steps.composercache.outputs.dir }} key: ${{ runner.os }}-php-8.2-composer-${{ hashFiles('**/composer.lock') }} restore-keys: ${{ runner.os }}-php-8.2-composer- - name: Cache PHPStan - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: build/phpstan key: ${{ runner.os }}-phpstan-${{ hashFiles('phpstan.neon.dist', 'src/**/*.php') }} diff --git a/.github/workflows/phpunit.yml b/.github/workflows/phpunit.yml index 09a1304..f4a4642 100644 --- a/.github/workflows/phpunit.yml +++ b/.github/workflows/phpunit.yml @@ -41,7 +41,7 @@ jobs: run: echo "dir=$(composer config cache-files-dir)" >> "$GITHUB_OUTPUT" - name: Cache composer dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ${{ steps.composercache.outputs.dir }} key: ${{ runner.os }}-php-${{ matrix.php-version }}-composer-${{ matrix.composer-flags }}-${{ hashFiles('**/composer.lock') }} diff --git a/.github/workflows/psalm.yml b/.github/workflows/psalm.yml index 672c5cf..0b15925 100644 --- a/.github/workflows/psalm.yml +++ b/.github/workflows/psalm.yml @@ -31,14 +31,14 @@ jobs: run: echo "dir=$(composer config cache-files-dir)" >> "$GITHUB_OUTPUT" - name: Cache composer dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ${{ steps.composercache.outputs.dir }} key: ${{ runner.os }}-php-8.2-composer-${{ hashFiles('**/composer.lock') }} restore-keys: ${{ runner.os }}-php-8.2-composer- - name: Cache Psalm - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: build/psalm key: ${{ runner.os }}-psalm-${{ hashFiles('psalm.xml.dist', 'src/**/*.php') }} diff --git a/.github/workflows/rector.yml b/.github/workflows/rector.yml index b65a13c..26c74b3 100644 --- a/.github/workflows/rector.yml +++ b/.github/workflows/rector.yml @@ -30,14 +30,14 @@ jobs: run: echo "dir=$(composer config cache-files-dir)" >> "$GITHUB_OUTPUT" - name: Cache composer dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ${{ steps.composercache.outputs.dir }} key: ${{ runner.os }}-php-8.2-composer-${{ hashFiles('**/composer.lock') }} restore-keys: ${{ runner.os }}-php-8.2-composer- - name: Cache Rector - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: /tmp/rector key: ${{ runner.os }}-rector-${{ hashFiles('rector.php', 'src/**/*.php') }}