From 9f75b43b20c1403eaa8019d5ea23607c5c6c9d2c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 23 Mar 2026 11:29:24 +0000 Subject: [PATCH] github-actions(deps): bump actions/cache from 4 to 5 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/diagnostics.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/diagnostics.yml b/.github/workflows/diagnostics.yml index 36b17bb..25715c3 100644 --- a/.github/workflows/diagnostics.yml +++ b/.github/workflows/diagnostics.yml @@ -42,7 +42,7 @@ jobs: php-version: ${{ matrix.php }} - name: Cache composer cache directory - uses: actions/cache@v4 + uses: actions/cache@v5 env: cache-name: composer-cache-dir-${{ matrix.php }} with: @@ -53,7 +53,7 @@ jobs: run: composer install - name: Cache vendor directory - uses: actions/cache@v4 + uses: actions/cache@v5 env: cache-name: vendor-${{ matrix.php }} with: @@ -66,7 +66,7 @@ jobs: run: ./vendor/bin/phpcq ${{ matrix.phpcq_install }} -v - name: Cache phpcq directory - uses: actions/cache@v4 + uses: actions/cache@v5 env: cache-name: phpcq-${{ matrix.php }} with: