From c51a7403c88277b63f7fa755dffcc7fd8c429b6d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 10 Feb 2025 03:08:54 +0000 Subject: [PATCH] Bump actions/cache from 3 to 4 Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4. - [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/v3...v4) --- updated-dependencies: - dependency-name: actions/cache 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 c318b46..6870c44 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@v3 + uses: actions/cache@v4 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@v3 + uses: actions/cache@v4 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@v3 + uses: actions/cache@v4 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@v3 + uses: actions/cache@v4 with: path: | ${{ steps.composer-cache.outputs.files_cache }}