Skip to content

Commit 8ffd1dc

Browse files
committed
use node 20,22,24
1 parent 6e5197a commit 8ffd1dc

7 files changed

+24
-24
lines changed

.github/workflows/call.test-ethereum-contracts.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ jobs:
2626
id: set-matrix
2727
run: |
2828
if [ "${{ inputs.run-coverage-tests }}" == "true" ];then
29-
echo "matrix={\"node-version\": [22]}" >> "$GITHUB_OUTPUT"
29+
echo "matrix={\"node-version\": [24]}" >> "$GITHUB_OUTPUT"
3030
else
31-
echo "matrix={\"node-version\": [18, 20, 22]}" >> "$GITHUB_OUTPUT"
31+
echo "matrix={\"node-version\": [20, 22, 24]}" >> "$GITHUB_OUTPUT"
3232
fi
3333
3434
test-ethereum-contracts:

.github/workflows/call.test-sdk-core.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ jobs:
2929
id: set-matrix
3030
run: |
3131
if [ "${{ inputs.run-coverage-tests }}" == "true" ];then
32-
echo "matrix={\"node-version\": [22]}" >> "$GITHUB_OUTPUT"
32+
echo "matrix={\"node-version\": [24]}" >> "$GITHUB_OUTPUT"
3333
else
34-
echo "matrix={\"node-version\": [18, 20, 22]}" >> "$GITHUB_OUTPUT"
34+
echo "matrix={\"node-version\": [20, 22, 24]}" >> "$GITHUB_OUTPUT"
3535
fi
3636
3737
test-sdk-core:

.github/workflows/cd.packages-stable.create-release-drafts.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ jobs:
2424
steps:
2525
- uses: actions/checkout@v4
2626

27-
- name: Use Node.js 18.x
27+
- name: Use Node.js 24.x
2828
uses: actions/setup-node@v4
2929
with:
30-
node-version: 18.x
30+
node-version: 24.x
3131
registry-url: https://registry.npmjs.org/
3232

3333
- name: Check package versions
@@ -54,10 +54,10 @@ jobs:
5454
steps:
5555
- uses: actions/checkout@v4
5656

57-
- name: Use Node.js 18.x
57+
- name: Use Node.js 24.x
5858
uses: actions/setup-node@v4
5959
with:
60-
node-version: 18.x
60+
node-version: 24.x
6161
registry-url: https://registry.npmjs.org/
6262

6363
- name: Check package versions
@@ -94,10 +94,10 @@ jobs:
9494
steps:
9595
- uses: actions/checkout@v4
9696

97-
- name: Use Node.js 18.x
97+
- name: Use Node.js 24.x
9898
uses: actions/setup-node@v4
9999
with:
100-
node-version: 18.x
100+
node-version: 24.x
101101
registry-url: https://registry.npmjs.org/
102102

103103
- name: Check package versions
@@ -171,10 +171,10 @@ jobs:
171171
steps:
172172
- uses: actions/checkout@v4
173173

174-
- name: Use Node.js 18.x
174+
- name: Use Node.js 24.x
175175
uses: actions/setup-node@v4
176176
with:
177-
node-version: 18.x
177+
node-version: 24.x
178178
registry-url: https://registry.npmjs.org/
179179

180180
- name: Create sdk-core stable release draft
@@ -198,10 +198,10 @@ jobs:
198198
steps:
199199
- uses: actions/checkout@v4
200200

201-
- name: Use Node.js 18.x
201+
- name: Use Node.js 24.x
202202
uses: actions/setup-node@v4
203203
with:
204-
node-version: 18.x
204+
node-version: 24.x
205205
registry-url: https://registry.npmjs.org/
206206

207207
- name: Check package versions

.github/workflows/daily-slack-message.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,18 @@ jobs:
1111
steps:
1212
- uses: actions/checkout@v4
1313

14-
- name: Use Node.js 18.x
14+
- name: Use Node.js 24.x
1515
uses: actions/setup-node@v4
1616
with:
17-
node-version: 18.x
18-
17+
node-version: 24.x
18+
1919

2020
- name: Send slack message
2121
working-directory: tasks
2222
run: |
2323
npm install ethers --force
2424
node daily-slack-bot.js
25-
env:
25+
env:
2626
CI_SLACK_WEBHOOK: ${{ secrets.CI_SLACK_WEBHOOK }}
2727
ETHERSCAN_API_KEY: ${{ secrets.ETHERSCAN_API_KEY }}
2828
POLYGONSCAN_API_KEY: ${{ secrets.POLYGONSCAN_API_KEY }}

.github/workflows/handler.publish-pr-packages.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919
steps:
2020
- uses: actions/checkout@v4
2121

22-
- name: Use Node.js 18.x
22+
- name: Use Node.js 24.x
2323
uses: actions/setup-node@v4
2424
with:
25-
node-version: 18.x
25+
node-version: 24.x
2626

2727
- name: Show context
2828
env:

.github/workflows/handler.update-evm-contracts-docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ jobs:
2323
echo github.head_ref: "$HEAD_REF"
2424
echo github.base_ref: ${{ github.base_ref }}
2525
26-
- name: Use Node.js 18.x
26+
- name: Use Node.js 24.x
2727
uses: actions/setup-node@v4
2828
with:
29-
node-version: 18.x
29+
node-version: 24.x
3030
cache: "yarn"
3131

3232
- name: Install

flake.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,9 +81,9 @@
8181
nodejs.pkgs.yarn
8282
nodejs.pkgs.nodemon
8383
];
84-
node18DevInputs = nodeDevInputsWith pkgs.nodejs_18;
8584
node20DevInputs = nodeDevInputsWith pkgs.nodejs_20;
8685
node22DevInputs = nodeDevInputsWith pkgs.nodejs_22;
86+
node24DevInputs = nodeDevInputsWith pkgs.nodejs_24;
8787
defaultNodeDevInputs = node22DevInputs;
8888

8989
# CI inputs
@@ -188,9 +188,9 @@
188188
};
189189

190190
devShells.ci-default = mkShellForNodeCI defaultNodeDevInputs;
191-
devShells.ci-node18 = mkShellForNodeCI node18DevInputs;
192191
devShells.ci-node20 = mkShellForNodeCI node20DevInputs;
193192
devShells.ci-node22 = mkShellForNodeCI node22DevInputs;
193+
devShells.ci-node24 = mkShellForNodeCI node24DevInputs;
194194

195195
devShells.ci-spec-ghc92 = mkShellForSpecCI ghcVer92;
196196
devShells.ci-spec-ghc94 = mkShellForSpecCI ghcVer94;

0 commit comments

Comments
 (0)