-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* upgrade actions/cachev4 * upgrade cache v4
- Loading branch information
Showing
2 changed files
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -50,7 +50,7 @@ jobs: | |
uses: actions/[email protected] | ||
|
||
- name: Cache dependencies | ||
uses: actions/cache@v2 | ||
uses: actions/cache@v4 | ||
with: | ||
path: vendor | ||
key: php-${{ hashFiles('composer.lock') }} | ||
|
@@ -74,14 +74,14 @@ jobs: | |
|
||
# Add vendor folder in cache to make next builds faster | ||
- name: Cache vendor folder | ||
uses: actions/cache@v1 | ||
uses: actions/cache@v4 | ||
with: | ||
path: vendor | ||
key: php-${{ hashFiles('composer.lock') }} | ||
|
||
# Add composer local folder in cache to make next builds faster | ||
- name: Cache composer folder | ||
uses: actions/cache@v1 | ||
uses: actions/cache@v4 | ||
with: | ||
path: ~/.composer/cache | ||
key: php-composer-cache | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters