Skip to content

Commit 79cfdd6

Browse files
committed
fix(actions): update node to v20
1 parent 6604cc4 commit 79cfdd6

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212
name: Install pnpm
1313
id: pnpm-install
1414

15-
- name: Use Node 16
16-
uses: actions/setup-node@v3
15+
- name: Use Node 20
16+
uses: actions/setup-node@v4
1717
with:
18-
node-version: '16'
18+
node-version: '20'
1919
cache: 'pnpm'
2020

2121
- name: Install dependencies

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- uses: actions/checkout@v2
10-
- uses: actions/setup-node@v1
10+
- uses: actions/setup-node@v4
1111
with:
12-
node-version: '12.x'
12+
node-version: '20'
1313
registry-url: 'https://registry.npmjs.org'
1414
- run: npm install
1515
- run: npm publish

0 commit comments

Comments
 (0)