File tree 2 files changed +12
-8
lines changed
2 files changed +12
-8
lines changed Original file line number Diff line number Diff line change @@ -17,11 +17,14 @@ jobs:
17
17
with :
18
18
ref : dev
19
19
token : ${{ secrets.GH_TOKEN }}
20
+ - uses : pnpm/action-setup@v4
21
+ with :
22
+ version : 9
20
23
- uses : actions/setup-node@v4
21
24
with :
22
25
node-version : 20
23
- cache : npm
24
- - run : npm install ${{ github.event.client_payload.package }}@${{ github.event.client_payload.version }} --save-exact
26
+ cache : pnpm
27
+ - run : pnpm install ${{ github.event.client_payload.package }}@${{ github.event.client_payload.version }} --save-exact
25
28
- uses : peter-evans/create-pull-request@v7
26
29
id : cpr
27
30
with :
Original file line number Diff line number Diff line change @@ -18,17 +18,18 @@ jobs:
18
18
with :
19
19
ref : dev
20
20
token : ${{ secrets.GH_TOKEN }}
21
+ - uses : pnpm/action-setup@v4
22
+ with :
23
+ version : 9
21
24
- uses : actions/setup-node@v4
22
25
with :
23
26
node-version : 20
24
- cache : npm
25
- # [email protected] requires Node 20 >=
26
- - run : npx npm-check-updates -u -x connect-gzip-static
27
- - run : rm -f package-lock.json
28
- - run : npm install
27
+ cache : pnpm
28
+ - run : |
29
+ pnpm up --latest
29
30
- uses : peter-evans/create-pull-request@v7
30
31
with :
31
32
commit-message : ' fix(ignore): update dependencies'
32
33
branch : ' deps/all'
33
- title : Update dependencies
34
+ title : ' fix(ignore): update dependencies'
34
35
token : ${{ secrets.GH_TOKEN }}
You can’t perform that action at this time.
0 commit comments