File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -13,22 +13,22 @@ jobs:
13
13
node-version : [14.x, 16.x]
14
14
15
15
steps :
16
- - uses : actions/checkout@v2
16
+ - uses : actions/checkout@v4
17
17
18
18
# from https://stackoverflow.com/a/69649733
19
19
- name : Reconfigure git to use HTTP authentication
20
20
run : >
21
21
git config --global url."https://github.com/".insteadOf
22
22
23
23
24
- - uses : actions/cache@v2
24
+ - uses : actions/cache@v4
25
25
with :
26
26
path : ~/.npm
27
27
key : ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
28
28
restore-keys : |
29
29
${{ runner.os }}-node-
30
30
31
- - uses : actions/setup-node@v2
31
+ - uses : actions/setup-node@v4
32
32
name : Use Node.js ${{ matrix.node-version }}
33
33
with :
34
34
node-version : ${{ matrix.node-version }}
43
43
if : github.ref == 'refs/heads/master' || github.event.pull_request
44
44
45
45
steps :
46
- - uses : actions/checkout@v2
47
- - uses : actions/setup-node@v2
46
+ - uses : actions/checkout@v4
47
+ - uses : actions/setup-node@v4
48
48
name : Use Node.js 14
49
49
with :
50
50
node-version : 14
Original file line number Diff line number Diff line change 13
13
14
14
steps :
15
15
- name : Checkout code
16
- uses : actions/checkout@v3
16
+ uses : actions/checkout@v4
17
17
with :
18
18
fetch-depth : 0
19
19
You can’t perform that action at this time.
0 commit comments