Skip to content

Commit e19623a

Browse files
authored
Use Node 20 (#538)
1 parent 975642a commit e19623a

File tree

11 files changed

+24
-19
lines changed

11 files changed

+24
-19
lines changed

.github/workflows/compile-cairo-alpha-project.yml

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
cache: 'yarn'
2525

2626
- name: Install dependencies

.github/workflows/compile-cairo-project.yml

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
cache: 'yarn'
2525

2626
- name: Install dependencies

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- uses: actions/checkout@v4
1313
- uses: actions/setup-node@v4
1414
with:
15-
node-version: 18.x
15+
node-version: 20.x
1616
cache: 'yarn'
1717
- name: Install dependencies
1818
run: yarn install --network-concurrency 1
@@ -31,7 +31,7 @@ jobs:
3131
deno-version: '1.46.3'
3232
- uses: actions/setup-node@v4
3333
with:
34-
node-version: 18.x
34+
node-version: 20.x
3535
cache: 'yarn'
3636
- name: Install dependencies and build wizard packages
3737
run: yarn install --frozen-lockfile
@@ -52,7 +52,7 @@ jobs:
5252
- uses: actions/checkout@v4
5353
- uses: actions/setup-node@v4
5454
with:
55-
node-version: 18.x
55+
node-version: 20.x
5656
cache: 'yarn'
5757
- name: Install Foundry
5858
if: matrix.package == 'solidity'

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
18
1+
20

packages/core/cairo/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"version": "node ../../../scripts/bump-changelog.js"
2424
},
2525
"devDependencies": {
26-
"@types/node": "^18.0.0",
26+
"@types/node": "^20.0.0",
2727
"@types/semver": "^7.5.7",
2828
"ava": "^6.0.0",
2929
"rimraf": "^5.0.0",

packages/core/cairo_alpha/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"version": "node ../../../scripts/bump-changelog.js"
2525
},
2626
"devDependencies": {
27-
"@types/node": "^18.0.0",
27+
"@types/node": "^20.0.0",
2828
"@types/semver": "^7.5.7",
2929
"ava": "^6.0.0",
3030
"rimraf": "^5.0.0",

packages/core/solidity/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"@openzeppelin/community-contracts": "https://github.com/OpenZeppelin/openzeppelin-community-contracts",
2727
"@openzeppelin/contracts": "^5.3.0",
2828
"@openzeppelin/contracts-upgradeable": "^5.3.0",
29-
"@types/node": "^18.0.0",
29+
"@types/node": "^20.0.0",
3030
"@types/semver": "^7.5.7",
3131
"ava": "^6.0.0",
3232
"hardhat": "^2.22.11",

packages/core/stellar/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"version": "node ../../../scripts/bump-changelog.js"
2323
},
2424
"devDependencies": {
25-
"@types/node": "^18.0.0",
25+
"@types/node": "^20.0.0",
2626
"@types/semver": "^7.5.7",
2727
"ava": "^6.0.0",
2828
"rimraf": "^5.0.0",

packages/core/stylus/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"version": "node ../../../scripts/bump-changelog.js"
2222
},
2323
"devDependencies": {
24-
"@types/node": "^18.0.0",
24+
"@types/node": "^20.0.0",
2525
"@types/semver": "^7.5.7",
2626
"ava": "^6.0.0",
2727
"rimraf": "^5.0.0",

packages/ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"@rollup/plugin-replace": "^6.0.0",
1919
"@rollup/plugin-typescript": "^12.0.0",
2020
"@types/file-saver": "^2.0.1",
21-
"@types/node": "^18.0.0",
21+
"@types/node": "^20.0.0",
2222
"@types/resize-observer-browser": "^0.1.5",
2323
"@types/semver": "^7.5.7",
2424
"@upstash/redis": "1.25.2",

0 commit comments

Comments
 (0)