Skip to content

Commit 8ddf7c9

Browse files
committed
use node 22
1 parent 6acde73 commit 8ddf7c9

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ jobs:
66
build:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v3
9+
- uses: actions/checkout@v4
10+
- uses: actions/setup-node@v3
11+
with:
12+
node-version: '22.x'
13+
registry-url: 'https://registry.npmjs.org'
1014
- run: npm ci
1115
- run: npm run build-sdk

.github/workflows/npm.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ jobs:
66
build:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v3
9+
- uses: actions/checkout@v4
1010
- uses: actions/setup-node@v3
1111
with:
12-
node-version: '16.x'
12+
node-version: '22.x'
1313
registry-url: 'https://registry.npmjs.org'
1414
- run: npm ci
1515
- run: npm run build-sdk

0 commit comments

Comments
 (0)