From 13b5231aa78ee6d148edcd1871684c2ea54fb2d5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jun 2026 04:33:40 +0000 Subject: [PATCH] deps(github): bump actions/cache from 5 to 6 in /.github/workflows 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/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 48b95f9..aa62c6f 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@v5 + - uses: actions/cache@v6 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@v5 + - uses: actions/cache@v6 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 4d3b581..f0d9600 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@v5 + - uses: actions/cache@v6 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 f86ef9e..f6c85c2 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@v5 + - uses: actions/cache@v6 with: path: vendor key: composer-${{ matrix.php-version }}-${{ hashFiles('composer.lock', 'composer.json') }}