File tree 5 files changed +20
-20
lines changed
5 files changed +20
-20
lines changed Original file line number Diff line number Diff line change @@ -13,24 +13,24 @@ jobs:
13
13
build : # make sure build/ci work properly
14
14
runs-on : ubuntu-latest
15
15
steps :
16
- - uses : actions/checkout@v3
16
+ - uses : actions/checkout@v4
17
17
with :
18
18
submodules : " recursive"
19
19
- name : Cache pnpm modules
20
- uses : actions/cache@v3
20
+ uses : actions/cache@v4
21
21
with :
22
22
path : ~/.pnpm-store
23
23
key : ${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}
24
24
restore-keys : |
25
25
${{ runner.os }}-
26
- - uses : pnpm/action-setup@v2.2.2
26
+ - uses : pnpm/action-setup@v4
27
27
with :
28
- version : 7 .12.2
28
+ version : 9 .12.3
29
29
run_install : true
30
- - name : Use Node.js 16 .x
31
- uses : actions/setup-node@v3.4.1
30
+ - name : Use Node.js 20 .x
31
+ uses : actions/setup-node@v4
32
32
with :
33
- node-version : 16 .x
33
+ node-version : 20 .x
34
34
cache : " pnpm"
35
35
- run : pnpm run package
36
36
51
51
runs-on : ubuntu-latest
52
52
needs : build
53
53
steps :
54
- - uses : actions/checkout@v3
54
+ - uses : actions/checkout@v4
55
55
with :
56
56
ref : staging
57
57
- uses : ./
Original file line number Diff line number Diff line change 12
12
deploy :
13
13
runs-on : ubuntu-latest
14
14
steps :
15
- - uses : actions/checkout@v3
15
+ - uses : actions/checkout@v4
16
16
with :
17
17
ref : staging
18
18
submodules : " recursive"
34
34
needs : deploy
35
35
runs-on : ubuntu-latest
36
36
steps :
37
- - uses : actions/checkout@v3
37
+ - uses : actions/checkout@v4
38
38
with :
39
39
ref : ${{ env.VERSION }}
40
40
48
48
id : diff
49
49
50
50
# If index.js was different than expected, upload the expected version as an artifact
51
- - uses : actions/upload-artifact@v3
51
+ - uses : actions/upload-artifact@v4
52
52
if : ${{ failure() && steps.diff.conclusion == 'failure' }}
53
53
with :
54
54
name : dist
Original file line number Diff line number Diff line change 9
9
build : # make sure build/ci work properly
10
10
runs-on : ubuntu-latest
11
11
steps :
12
- - uses : actions/checkout@v3
12
+ - uses : actions/checkout@v4
13
13
with :
14
14
submodules : " recursive"
15
15
- name : Cache pnpm modules
16
- uses : actions/cache@v3
16
+ uses : actions/cache@v4
17
17
with :
18
18
path : ~/.pnpm-store
19
19
key : ${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}
20
20
restore-keys : |
21
21
${{ runner.os }}-
22
- - uses : pnpm/action-setup@v2.2.2
22
+ - uses : pnpm/action-setup@v4
23
23
with :
24
- version : 7 .12.2
24
+ version : 9 .12.3
25
25
run_install : true
26
- - name : Use Node.js 16 .x
27
- uses : actions/setup-node@v3.4.1
26
+ - name : Use Node.js 20 .x
27
+ uses : actions/setup-node@v4
28
28
with :
29
- node-version : 16 .x
29
+ node-version : 20 .x
30
30
cache : " pnpm"
31
31
- run : pnpm run package
Original file line number Diff line number Diff line change 14
14
"@ianvs/prettier-plugin-sort-imports" : " 4.4.0" ,
15
15
"esbuild" : " 0.24.0" ,
16
16
"prettier" : " 3.3.3" ,
17
- "turbo" : " 2.2 .3" ,
17
+ "turbo" : " 2.3 .3" ,
18
18
"typescript" : " 5.6.3"
19
19
},
20
20
"packageManager" :
" [email protected] "
Original file line number Diff line number Diff line change 1
1
{
2
2
"$schema" : " https://turborepo.org/schema.json" ,
3
- "pipeline " : {
3
+ "tasks " : {
4
4
"package" : {
5
5
"dependsOn" : [" ^build" ],
6
6
"outputs" : [" dist/**" ]
You can’t perform that action at this time.
0 commit comments