File tree Expand file tree Collapse file tree 4 files changed +18
-18
lines changed Expand file tree Collapse file tree 4 files changed +18
-18
lines changed Original file line number Diff line number Diff line change @@ -16,10 +16,10 @@ jobs:
16
16
name : Install
17
17
runs-on : ubuntu-latest
18
18
steps :
19
- - uses : actions/checkout@v3
19
+ - uses : actions/checkout@v4
20
20
- name : Cache node_modules
21
21
id : cacheModules
22
- uses : actions/cache@v3
22
+ uses : actions/cache@v4
23
23
with :
24
24
path : ~/.npm # this is cache where npm installs from before going out to the network
25
25
key : ${{ runner.os }}-node-${{ hashFiles('**/package.json') }}
39
39
needs : [install]
40
40
runs-on : ubuntu-latest
41
41
steps :
42
- - uses : actions/checkout@v3
43
- - uses : actions/cache@v3
42
+ - uses : actions/checkout@v4
43
+ - uses : actions/cache@v4
44
44
with :
45
45
path : ~/.npm # this is cache where npm installs from before going out to the network
46
46
key : ${{ runner.os }}-node-${{ hashFiles('**/package.json') }}
Original file line number Diff line number Diff line change 12
12
node-version : [10.x, 12.x, 14.x, 16.x]
13
13
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
14
14
steps :
15
- - uses : actions/checkout@v3
16
- - uses : actions/cache@v3
15
+ - uses : actions/checkout@v4
16
+ - uses : actions/cache@v4
17
17
with :
18
18
path : ~/.npm # this is cache where npm installs from before going out to the network
19
19
key : ${{ runner.os }}-node-${{ hashFiles('**/package.json') }}
28
28
name : Code Lint
29
29
runs-on : ubuntu-latest
30
30
steps :
31
- - uses : actions/checkout@v3
32
- - uses : actions/cache@v3
31
+ - uses : actions/checkout@v4
32
+ - uses : actions/cache@v4
33
33
with :
34
34
path : ~/.npm # this is cache where npm installs from before going out to the network
35
35
key : ${{ runner.os }}-node-${{ hashFiles('**/package.json') }}
40
40
name : Types
41
41
runs-on : ubuntu-latest
42
42
steps :
43
- - uses : actions/checkout@v3
44
- - uses : actions/cache@v3
43
+ - uses : actions/checkout@v4
44
+ - uses : actions/cache@v4
45
45
with :
46
46
path : ~/.npm # this is cache where npm installs from before going out to the network
47
47
key : ${{ runner.os }}-node-${{ hashFiles('**/package.json') }}
Original file line number Diff line number Diff line change @@ -28,10 +28,10 @@ jobs:
28
28
name : Install
29
29
runs-on : ubuntu-latest
30
30
steps :
31
- - uses : actions/checkout@v3
31
+ - uses : actions/checkout@v4
32
32
- name : Cache node_modules
33
33
id : cacheModules
34
- uses : actions/cache@v3
34
+ uses : actions/cache@v4
35
35
with :
36
36
path : ~/.npm # this is cache where npm installs from before going out to the network
37
37
key : ${{ runner.os }}-node-${{ hashFiles('**/package.json') }}
Original file line number Diff line number Diff line change @@ -22,10 +22,10 @@ jobs:
22
22
name : Install
23
23
runs-on : ubuntu-latest
24
24
steps :
25
- - uses : actions/checkout@v3
25
+ - uses : actions/checkout@v4
26
26
- name : Cache node_modules
27
27
id : cacheModules
28
- uses : actions/cache@v3
28
+ uses : actions/cache@v4
29
29
with :
30
30
path : ~/.npm # this is cache where npm installs from before going out to the network
31
31
key : ${{ runner.os }}-node-${{ hashFiles('**/package.json') }}
45
45
needs : [install]
46
46
runs-on : ubuntu-latest
47
47
steps :
48
- - uses : actions/checkout@v3
49
- - uses : actions/cache@v3
48
+ - uses : actions/checkout@v4
49
+ - uses : actions/cache@v4
50
50
with :
51
51
# This is cache where npm installs from before going out to the network
52
52
path : ~/.npm
@@ -61,13 +61,13 @@ jobs:
61
61
runs-on : ubuntu-latest
62
62
needs : [checks, security]
63
63
steps :
64
- - uses : actions/checkout@v3
64
+ - uses : actions/checkout@v4
65
65
- uses : actions/setup-node@v3
66
66
with :
67
67
node-version-file : ' .nvmrc'
68
68
# Setup .npmrc file to publish to npm
69
69
registry-url : ' https://registry.npmjs.org'
70
- - uses : actions/cache@v3
70
+ - uses : actions/cache@v4
71
71
with :
72
72
path : ~/.npm # this is cache where npm installs from before going out to the network
73
73
key : ${{ runner.os }}-node-${{ hashFiles('**/package.json') }}
You can’t perform that action at this time.
0 commit comments