@@ -10,13 +10,13 @@ jobs:
10
10
runs-on : ubuntu-latest
11
11
steps :
12
12
- name : Checkout the repository
13
- uses : actions/checkout@v2
13
+ uses : actions/checkout@v3
14
14
- name : Install pnpm
15
15
uses : pnpm/action-setup@v2
16
16
with :
17
17
version : latest
18
18
- name : Install Node.js
19
- uses : actions/setup-node@v2
19
+ uses : actions/setup-node@v3
20
20
with :
21
21
node-version : 17
22
22
cache : pnpm
@@ -37,13 +37,13 @@ jobs:
37
37
name : Node.js ${{ matrix.node-version }} Quick
38
38
steps :
39
39
- name : Checkout the repository
40
- uses : actions/checkout@v2
40
+ uses : actions/checkout@v3
41
41
- name : Install pnpm
42
42
uses : pnpm/action-setup@v2
43
43
with :
44
44
version : latest
45
45
- name : Install Node.js ${{ matrix.node-version }}
46
- uses : actions/setup-node@v2
46
+ uses : actions/setup-node@v3
47
47
with :
48
48
node-version : ${{ matrix.node-version }}
49
49
cache : pnpm
@@ -58,15 +58,15 @@ jobs:
58
58
name : Node.js 10 Quick
59
59
steps :
60
60
- name : Checkout the repository
61
- uses : actions/checkout@v2
61
+ uses : actions/checkout@v3
62
62
- name : Install pnpm
63
63
uses : pnpm/action-setup@v1
64
64
with :
65
65
version : 3
66
66
env :
67
67
ACTIONS_ALLOW_UNSECURE_COMMANDS : true
68
68
- name : Install Node.js 10
69
- uses : actions/setup-node@v2
69
+ uses : actions/setup-node@v3
70
70
with :
71
71
node-version : 10
72
72
- name : Install dependencies
@@ -80,13 +80,13 @@ jobs:
80
80
runs-on : ubuntu-latest
81
81
steps :
82
82
- name : Checkout the repository
83
- uses : actions/checkout@v2
83
+ uses : actions/checkout@v3
84
84
- name : Install pnpm
85
85
uses : pnpm/action-setup@v2
86
86
with :
87
87
version : latest
88
88
- name : Install Node.js
89
- uses : actions/setup-node@v2
89
+ uses : actions/setup-node@v3
90
90
with :
91
91
node-version : 16
92
92
cache : pnpm
0 commit comments