Skip to content

Commit 03d82e8

Browse files
committed
fix: use node 20.x
1 parent c3a637f commit 03d82e8

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Setup node
2121
uses: actions/setup-node@v4
2222
with:
23-
node-version: 18.x
23+
node-version: 20.x
2424

2525
- name: Install dependencies
2626
run: npm ci

.github/workflows/doc.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Setup node
1919
uses: actions/setup-node@v4
2020
with:
21-
node-version: 18.x
21+
node-version: 20.x
2222

2323
- name: Install dependencies
2424
run: npm ci

.github/workflows/lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Setup node
2121
uses: actions/setup-node@v4
2222
with:
23-
node-version: 18.x
23+
node-version: 20.x
2424

2525
- name: Install dependencies
2626
run: npm ci

.github/workflows/publish.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: "Setup node"
1919
uses: actions/setup-node@v4
2020
with:
21-
node-version: 18.x
21+
node-version: 20.x
2222
registry-url: 'https://registry.npmjs.org'
2323
scope: '@aleph-sdk'
2424

@@ -47,7 +47,7 @@ jobs:
4747
- name: "Setup node"
4848
uses: actions/setup-node@v4
4949
with:
50-
node-version: 18.x
50+
node-version: 20.x
5151
registry-url: 'https://npm.pkg.github.com'
5252
scope: '@aleph-sdk'
5353

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Use Node.js
1818
uses: actions/setup-node@v4
1919
with:
20-
node-version: 18.x
20+
node-version: 20.x
2121

2222
- name: Install dependencies
2323
run: npm ci

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
],
4242
"license": "MIT",
4343
"engines": {
44-
"node": ">=18.0.0"
44+
"node": ">=20.0.0"
4545
},
4646
"type": "module",
4747
"devDependencies": {

0 commit comments

Comments
 (0)