From 097796ebab8abdbd66da64f270f8b24272dc364c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 23 Jun 2026 22:33:47 +0000 Subject: [PATCH] chore(ci): 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/php-composer-script.yml | 2 +- .github/workflows/php-tests.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/php-composer-script.yml b/.github/workflows/php-composer-script.yml index 9cce6f2..cfb29b8 100644 --- a/.github/workflows/php-composer-script.yml +++ b/.github/workflows/php-composer-script.yml @@ -132,7 +132,7 @@ jobs: - name: Cache Composer dependencies if: ${{ inputs.install-deps }} - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: vendor key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} diff --git a/.github/workflows/php-tests.yml b/.github/workflows/php-tests.yml index 95ad77a..1dc48c9 100644 --- a/.github/workflows/php-tests.yml +++ b/.github/workflows/php-tests.yml @@ -139,7 +139,7 @@ jobs: } > "$GITHUB_OUTPUT" - name: Cache dependencies - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ${{ steps.composer-cache.outputs.dir }} key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}