@@ -19,10 +19,10 @@ jobs:
19
19
node-version : [14.x, 16.x, 18.x, 20.x]
20
20
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
21
21
steps :
22
- - uses : actions/checkout@v3
22
+ - uses : actions/checkout@v4
23
23
with :
24
24
ref : ${{ inputs.ref }}
25
- - uses : actions/cache@v3
25
+ - uses : actions/cache@v4
26
26
with :
27
27
path : ~/.npm # this is cache where npm installs from before going out to the network
28
28
key : ${{ runner.os }}-node-${{ hashFiles('**/package.json') }}
@@ -37,10 +37,10 @@ jobs:
37
37
name : Browser Test Specs
38
38
runs-on : ubuntu-latest
39
39
steps :
40
- - uses : actions/checkout@v3
40
+ - uses : actions/checkout@v4
41
41
with :
42
42
ref : ${{ inputs.ref }}
43
- - uses : actions/cache@v3
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') }}
@@ -55,10 +55,10 @@ jobs:
55
55
name : Code Lint
56
56
runs-on : ubuntu-latest
57
57
steps :
58
- - uses : actions/checkout@v3
58
+ - uses : actions/checkout@v4
59
59
with :
60
60
ref : ${{ inputs.ref }}
61
- - uses : actions/cache@v3
61
+ - uses : actions/cache@v4
62
62
with :
63
63
path : ~/.npm # this is cache where npm installs from before going out to the network
64
64
key : ${{ runner.os }}-node-${{ hashFiles('**/package.json') }}
@@ -69,10 +69,10 @@ jobs:
69
69
name : Types
70
70
runs-on : ubuntu-latest
71
71
steps :
72
- - uses : actions/checkout@v3
72
+ - uses : actions/checkout@v4
73
73
with :
74
74
ref : ${{ inputs.ref }}
75
- - uses : actions/cache@v3
75
+ - uses : actions/cache@v4
76
76
with :
77
77
path : ~/.npm # this is cache where npm installs from before going out to the network
78
78
key : ${{ runner.os }}-node-${{ hashFiles('**/package.json') }}
0 commit comments