From 84dfdf820725234db74f5bd29756bcf96540a5fc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Feb 2024 08:35:53 +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 | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 31e6581..0988fc7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -32,7 +32,7 @@ jobs: # but will restore the cache generated during the previous run # based on partial match - name: Composer cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | ${{ steps.composer-cache.outputs.files_cache }} @@ -45,7 +45,7 @@ jobs: # but will restore the cache generated during the previous run # based on partial match - name: Psalm cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: # we really need a way for Psalm to tell where cache is located path: | @@ -90,7 +90,7 @@ jobs: # the way cache keys are set up will always cause a cache miss # but will restore the cache generated during the previous run - name: Retrieve cached packages - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | ${{ steps.composer-cache.outputs.files_cache }} @@ -103,7 +103,7 @@ jobs: # but will restore the cache generated during the previous run # based on partial match - name: Retrieve PHPCS cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | ~/.cache/phpcs @@ -155,7 +155,7 @@ jobs: # the way cache keys are set up will always cause a cache miss # but will restore the cache generated during the previous run - name: Retrieve cached packages - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | ${{ steps.composer-cache.outputs.files_cache }}