From 9872d032ba81af05670cd8b395b1f6764e98f88f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 04:18:42 +0000 Subject: [PATCH] deps(github): bump actions/cache from 4 to 5 in /.github/workflows 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.yaml | 4 ++-- .github/workflows/phpstan.yaml | 2 +- .github/workflows/phpunit.yaml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/code-style.yaml b/.github/workflows/code-style.yaml index cbb3405..457165d 100644 --- a/.github/workflows/code-style.yaml +++ b/.github/workflows/code-style.yaml @@ -11,7 +11,7 @@ jobs: - uses: shivammathur/setup-php@v2 with: php-version: 8.4 - - uses: actions/cache@v4 + - uses: actions/cache@v5 with: path: vendor key: composer-8.4-${{ hashFiles('composer.lock', 'composer.json') }} @@ -27,7 +27,7 @@ jobs: - uses: shivammathur/setup-php@v2 with: php-version: 8.4 - - uses: actions/cache@v4 + - uses: actions/cache@v5 with: path: vendor key: composer-8.4-${{ hashFiles('composer.lock', 'composer.json') }} diff --git a/.github/workflows/phpstan.yaml b/.github/workflows/phpstan.yaml index 16f2ad1..e5873ee 100644 --- a/.github/workflows/phpstan.yaml +++ b/.github/workflows/phpstan.yaml @@ -13,7 +13,7 @@ jobs: - uses: shivammathur/setup-php@v2 with: php-version: 8.4 - - uses: actions/cache@v4 + - uses: actions/cache@v5 with: path: vendor key: composer-8.4-${{ hashFiles('composer.lock', 'composer.json') }} diff --git a/.github/workflows/phpunit.yaml b/.github/workflows/phpunit.yaml index b023db3..41dba12 100644 --- a/.github/workflows/phpunit.yaml +++ b/.github/workflows/phpunit.yaml @@ -19,7 +19,7 @@ jobs: with: php-version: ${{ matrix.php-version }} coverage: pcov - - uses: actions/cache@v4 + - uses: actions/cache@v5 with: path: vendor key: composer-${{ matrix.php-version }}-${{ hashFiles('composer.lock', 'composer.json') }}