From bb4ea37918437cb1ae74ecba58edcbdd91b61a8a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 12 Dec 2025 13:01:26 +0000 Subject: [PATCH] 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/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6870c44..14e68c1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,7 +28,7 @@ jobs: echo "vcs_cache=$(composer config cache-vcs-dir)" >> $GITHUB_OUTPUT - name: Retrieve cached packages - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | ${{ steps.composer-cache.outputs.files_cache }} @@ -41,7 +41,7 @@ jobs: # but will restore the cache generated during the previous run # based on partial match - name: Retrieve Psalm's cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: # we really need a way for Psalm to tell where cache is located path: | @@ -81,7 +81,7 @@ jobs: echo "vcs_cache=$(composer config cache-vcs-dir)" >> $GITHUB_OUTPUT - name: Retrieve cached packages - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | ${{ steps.composer-cache.outputs.files_cache }} @@ -127,7 +127,7 @@ jobs: echo "vcs_cache=$(composer config cache-vcs-dir)" >> $GITHUB_OUTPUT - name: Retrieve cached packages - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | ${{ steps.composer-cache.outputs.files_cache }}