8
8
runs-on : ubuntu-latest
9
9
10
10
steps :
11
- - uses : actions/checkout@v2
12
- - name : Use Node.js 16 .x
13
- uses : actions/setup-node@v2
11
+ - uses : actions/checkout@v4
12
+ - name : Use Node.js 22 .x
13
+ uses : actions/setup-node@v4
14
14
with :
15
- node-version : 16 .x
15
+ node-version : 22 .x
16
16
17
- - uses : actions/cache@v2
17
+ - uses : actions/cache@v4
18
18
id : yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
19
19
with :
20
20
path : ' **/node_modules'
@@ -38,16 +38,16 @@ jobs:
38
38
39
39
strategy :
40
40
matrix :
41
- node-version : [12 .x, 14 .x, 16 .x]
41
+ node-version : [18 .x, 20 .x, 22 .x]
42
42
43
43
steps :
44
- - uses : actions/checkout@v2
44
+ - uses : actions/checkout@v4
45
45
- name : Use Node.js ${{ matrix.node-version }}
46
- uses : actions/setup-node@v2
46
+ uses : actions/setup-node@v4
47
47
with :
48
48
node-version : ${{ matrix.node-version }}
49
49
50
- - uses : actions/cache@v2
50
+ - uses : actions/cache@v4
51
51
id : yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
52
52
with :
53
53
path : ' **/node_modules'
@@ -70,13 +70,13 @@ jobs:
70
70
runs-on : ubuntu-latest
71
71
72
72
steps :
73
- - uses : actions/checkout@v2
74
- - name : Use Node.js 16 .x
75
- uses : actions/setup-node@v2
73
+ - uses : actions/checkout@v4
74
+ - name : Use Node.js 22 .x
75
+ uses : actions/setup-node@v4
76
76
with :
77
- node-version : 16 .x
77
+ node-version : 22 .x
78
78
79
- - uses : actions/cache@v2
79
+ - uses : actions/cache@v4
80
80
id : yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
81
81
with :
82
82
path : ' **/node_modules'
@@ -100,7 +100,7 @@ jobs:
100
100
name : Spellcheck
101
101
runs-on : ubuntu-latest
102
102
steps :
103
- - uses : actions/checkout@v2
103
+ - uses : actions/checkout@v4
104
104
- uses : streetsidesoftware/cspell-action@main
105
105
with :
106
106
# Github token used to fetch the list of changed files in the commit.
0 commit comments