File tree Expand file tree Collapse file tree 3 files changed +16
-17
lines changed Expand file tree Collapse file tree 3 files changed +16
-17
lines changed Original file line number Diff line number Diff line change @@ -18,19 +18,19 @@ jobs:
18
18
pull-requests : write
19
19
20
20
steps :
21
- - uses : actions/checkout@v2
22
- - uses : actions/setup-node@v3
21
+ - uses : actions/checkout@v4
22
+ - uses : actions/setup-node@v4
23
23
with :
24
24
node-version : 18
25
25
26
- - uses : pnpm/action-setup@v2
26
+ - uses : pnpm/action-setup@v3
27
27
with :
28
28
version : 8.2.0
29
29
- name : Get pnpm store directory
30
30
id : pnpm-cache
31
31
shell : bash
32
32
run : echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
33
- - uses : actions/cache@v3
33
+ - uses : actions/cache@v4
34
34
name : Setup pnpm cache
35
35
with :
36
36
path : ${{ steps.pnpm-cache.outputs.STORE_PATH }}
Original file line number Diff line number Diff line change @@ -11,20 +11,21 @@ jobs:
11
11
static-analysis :
12
12
name : ' Lint and Type-check'
13
13
runs-on : ubuntu-latest
14
+
14
15
steps :
15
- - uses : actions/checkout@v2
16
- - uses : actions/setup-node@v3
16
+ - uses : actions/checkout@v4
17
+ - uses : actions/setup-node@v4
17
18
with :
18
19
node-version : 18
19
20
20
- - uses : pnpm/action-setup@v2
21
+ - uses : pnpm/action-setup@v3
21
22
with :
22
23
version : 8.2.0
23
24
- name : Get pnpm store directory
24
25
id : pnpm-cache
25
26
shell : bash
26
27
run : echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
27
- - uses : actions/cache@v3
28
+ - uses : actions/cache@v4
28
29
name : Setup pnpm cache
29
30
with :
30
31
path : ${{ steps.pnpm-cache.outputs.STORE_PATH }}
Original file line number Diff line number Diff line change 9
9
10
10
jobs :
11
11
matrix :
12
- name : ' Node ${{ matrix.node }} '
12
+ name : ' Node 18 '
13
13
runs-on : ubuntu-latest
14
- strategy :
15
- matrix :
16
- node : [16, 18]
14
+
17
15
steps :
18
- - uses : actions/checkout@v2
19
- - uses : actions/setup-node@v3
16
+ - uses : actions/checkout@v4
17
+ - uses : actions/setup-node@v4
20
18
with :
21
- node-version : ${{ matrix.node }}
19
+ node-version : 18
22
20
23
- - uses : pnpm/action-setup@v2
21
+ - uses : pnpm/action-setup@v3
24
22
with :
25
23
version : 8.2.0
26
24
- name : Get pnpm store directory
27
25
id : pnpm-cache
28
26
shell : bash
29
27
run : echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
30
- - uses : actions/cache@v3
28
+ - uses : actions/cache@v4
31
29
name : Setup pnpm cache
32
30
with :
33
31
path : ${{ steps.pnpm-cache.outputs.STORE_PATH }}
You can’t perform that action at this time.
0 commit comments