From f1d0157aa6f76eb7f7e6675ef870a4a1a90186e9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jun 2026 23:53:02 +0000 Subject: [PATCH] Bump actions/cache from 5 to 6 in the all-actions group Bumps the all-actions group with 1 update: [actions/cache](https://github.com/actions/cache). Updates `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 dependency-group: all-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/interoperability.yml | 4 ++-- .github/workflows/php.yml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/interoperability.yml b/.github/workflows/interoperability.yml index eaf4982..c47256a 100644 --- a/.github/workflows/interoperability.yml +++ b/.github/workflows/interoperability.yml @@ -50,7 +50,7 @@ jobs: - uses: actions/checkout@v7 - name: Cache composer dependencies - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: $(composer config cache-files-dir) key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} @@ -69,7 +69,7 @@ jobs: - name: Cache metadata id: cache-metadata - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: /tmp/metadata key: ${{ runner.os }}-metadata-${{ env.date }} diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index f1d57d1..977a818 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -78,7 +78,7 @@ jobs: run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$GITHUB_ENV" - name: Cache composer dependencies - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ${{ env.COMPOSER_CACHE }} key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }} @@ -141,7 +141,7 @@ jobs: run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$env:GITHUB_ENV" - name: Cache composer dependencies - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ${{ env.COMPOSER_CACHE }} key: ${{ runner.os }}-composer-${{ hashFiles('**\composer.json') }} @@ -179,7 +179,7 @@ jobs: run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$GITHUB_ENV" - name: Cache composer dependencies - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ${{ env.COMPOSER_CACHE }} key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }} @@ -233,7 +233,7 @@ jobs: run: echo COMPOSER_CACHE="$(composer config cache-files-dir)" >> "$GITHUB_ENV" - name: Cache composer dependencies - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ${{ env.COMPOSER_CACHE }} key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}