Skip to content

Commit 8c3f5ed

Browse files
Bump actions/cache from 2 to 3
Bumps [actions/cache](https://github.com/actions/cache) from 2 to 3. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v2...v3) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 8f292bb commit 8c3f5ed

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
echo "::set-output name=vcs_cache::$(composer config cache-vcs-dir)"
2929
3030
- name: Retrieve cached packages
31-
uses: actions/cache@v2
31+
uses: actions/cache@v3
3232
with:
3333
path: |
3434
${{ steps.composer-cache.outputs.files_cache }}
@@ -41,7 +41,7 @@ jobs:
4141
# but will restore the cache generated during the previous run
4242
# based on partial match
4343
- name: Retrieve Psalm's cache
44-
uses: actions/cache@v2
44+
uses: actions/cache@v3
4545
with:
4646
# we really need a way for Psalm to tell where cache is located
4747
path: |
@@ -81,7 +81,7 @@ jobs:
8181
echo "::set-output name=vcs_cache::$(composer config cache-vcs-dir)"
8282
8383
- name: Retrieve cached packages
84-
uses: actions/cache@v2
84+
uses: actions/cache@v3
8585
with:
8686
path: |
8787
${{ steps.composer-cache.outputs.files_cache }}
@@ -127,7 +127,7 @@ jobs:
127127
echo "::set-output name=vcs_cache::$(composer config cache-vcs-dir)"
128128
129129
- name: Retrieve cached packages
130-
uses: actions/cache@v2
130+
uses: actions/cache@v3
131131
with:
132132
path: |
133133
${{ steps.composer-cache.outputs.files_cache }}

0 commit comments

Comments
 (0)