File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 44
44
if : " !! env.GIT_DIFF"
45
45
46
46
- name : Cache Composer vendor directory
47
- uses : actions/cache@v3
47
+ uses : actions/cache@v4
48
48
with :
49
49
path : ${{ steps.composer-cache.outputs.dir }}
50
50
key : ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
Original file line number Diff line number Diff line change @@ -29,16 +29,16 @@ jobs:
29
29
with :
30
30
node-version : 16.x
31
31
cache : ' npm'
32
-
32
+
33
33
# Checks if node_modules exists in the cache.
34
34
- name : Cache node_modules directory
35
35
id : cache
36
- uses : actions/cache@v3
36
+ uses : actions/cache@v4
37
37
with :
38
38
path : node_modules
39
39
key : ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
40
40
restore-keys : ${{ runner.os }}-node-
41
-
41
+
42
42
- name : Setup Registry
43
43
run : printf "@newfold-labs:registry=https://npm.pkg.github.com/\n//npm.pkg.github.com/:_authToken=${{ secrets.NPM_TOKEN }}" > .npmrc
44
44
if : steps.cache.outputs.cache-hit != 'true'
You can’t perform that action at this time.
0 commit comments