From 45f69aee0dd322ef7afe739d757ae52924d976eb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 24 Jun 2026 13:23:34 +0000 Subject: [PATCH] github-actions(deps): 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/diagnostics.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/diagnostics.yml b/.github/workflows/diagnostics.yml index adaf716..855df00 100644 --- a/.github/workflows/diagnostics.yml +++ b/.github/workflows/diagnostics.yml @@ -41,7 +41,7 @@ jobs: php-version: ${{ matrix.php }} - name: Cache composer cache directory - uses: actions/cache@v5 + uses: actions/cache@v6 env: cache-name: composer-cache-dir-${{ matrix.php }} with: @@ -49,7 +49,7 @@ jobs: key: ${{ runner.os }}-build-${{ env.cache-name }} - name: Cache vendor directory - uses: actions/cache@v5 + uses: actions/cache@v6 env: cache-name: vendor-${{ matrix.php }} with: @@ -59,7 +59,7 @@ jobs: ${{ runner.os }}-build-${{ env.cache-name }}- - name: Cache phpcq directory - uses: actions/cache@v5 + uses: actions/cache@v6 env: cache-name: phpcq-${{ matrix.php }} with: