Skip to content

Commit

Permalink
Bump actions/cache from 3 to 4
Browse files Browse the repository at this point in the history
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](actions/cache@v3...v4)

---
updated-dependencies:
- dependency-name: actions/cache
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] committed Feb 1, 2024
1 parent e6c6bdd commit 84dfdf8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand All @@ -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: |
Expand Down Expand Up @@ -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 }}
Expand All @@ -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
Expand Down Expand Up @@ -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 }}
Expand Down

0 comments on commit 84dfdf8

Please sign in to comment.