From 93a44fc22c562e15ff6e60e42585304078a4c5c4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 24 May 2026 17:52:26 +0000 Subject: [PATCH] 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/phpcs.yml | 2 +- .github/workflows/phpstan.yml | 2 +- .github/workflows/phpunit.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/phpcs.yml b/.github/workflows/phpcs.yml index bd5687a..7279533 100644 --- a/.github/workflows/phpcs.yml +++ b/.github/workflows/phpcs.yml @@ -26,7 +26,7 @@ jobs: tools: composer:v2 - name: Cache Composer dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.cache/composer key: composer-${{ runner.os }}-cs-${{ hashFiles('**/composer.json') }} diff --git a/.github/workflows/phpstan.yml b/.github/workflows/phpstan.yml index f7902ea..a6f8930 100644 --- a/.github/workflows/phpstan.yml +++ b/.github/workflows/phpstan.yml @@ -26,7 +26,7 @@ jobs: tools: composer:v2 - name: Cache Composer dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.cache/composer key: composer-${{ runner.os }}-stan-${{ hashFiles('**/composer.json') }} diff --git a/.github/workflows/phpunit.yml b/.github/workflows/phpunit.yml index b3a69d3..dda8ada 100644 --- a/.github/workflows/phpunit.yml +++ b/.github/workflows/phpunit.yml @@ -32,7 +32,7 @@ jobs: tools: composer:v2 - name: Cache Composer dependencies - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/.cache/composer key: composer-${{ runner.os }}-${{ matrix.php-version }}-${{ hashFiles('**/composer.json') }}