Skip to content

Commit bbbd959

Browse files
authored
build: align node versions (#1905)
* build: align node versions Signed-off-by: Adam Setch <[email protected]> * build: align node versions Signed-off-by: Adam Setch <[email protected]> --------- Signed-off-by: Adam Setch <[email protected]>
1 parent 617ca5e commit bbbd959

File tree

7 files changed

+21
-19
lines changed

7 files changed

+21
-19
lines changed

.github/workflows/binary-builds.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -171,6 +171,7 @@ jobs:
171171
strategy:
172172
fail-fast: false
173173
matrix:
174+
node-version: ['24']
174175
os: ['ubuntu-22.04', 'windows-2022', 'windows-11-arm', 'ubuntu-22.04-arm']
175176
include:
176177
- os: ubuntu-22.04
@@ -271,10 +272,10 @@ jobs:
271272
- uses: actions/checkout@v4
272273
with:
273274
persist-credentials: false
274-
- name: Use Node.js
275+
- name: Use Node.js ${{ matrix.node-version }}
275276
uses: actions/setup-node@v4
276277
with:
277-
node-version: '24.x'
278+
node-version: ${{ matrix.node-version }}
278279
- name: Install pnpm
279280
run: |
280281
npm install --global [email protected]

.github/workflows/dockertests.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
fail-fast: true
1616
matrix:
1717
os: ['ubuntu-24.04', 'ubuntu-24.04-arm']
18-
node-version: ['23.x']
18+
node-version: ['24']
1919
java-version: ['24']
2020
runs-on: ${{ matrix.os }}
2121
steps:
@@ -96,7 +96,7 @@ jobs:
9696
fail-fast: true
9797
matrix:
9898
os: ['ubuntu-24.04', 'ubuntu-24.04-arm']
99-
node-version: ['23.x']
99+
node-version: ['24']
100100
java-version: ['24']
101101
runs-on: ${{ matrix.os }}
102102
steps:
@@ -145,7 +145,7 @@ jobs:
145145
strategy:
146146
fail-fast: true
147147
matrix:
148-
node-version: ['23.x']
148+
node-version: ['24']
149149
java-version: ['24']
150150
os: [ubuntu-24.04, ubuntu-24.04-arm]
151151
runs-on: ${{ matrix.os }}
@@ -193,7 +193,7 @@ jobs:
193193
strategy:
194194
fail-fast: true
195195
matrix:
196-
node-version: ['23.x']
196+
node-version: ['24']
197197
java-version: ['24']
198198
steps:
199199
- uses: actions/checkout@v4

.github/workflows/java-reachables-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
fail-fast: false
1313
matrix:
1414
java-version: ['24']
15-
node-version: ['23.x']
15+
node-version: ['24']
1616
os: ['ubuntu-24.04']
1717
runs-on: ${{ matrix.os }}
1818
steps:

.github/workflows/nodejs.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
strategy:
7474
fail-fast: false
7575
matrix:
76-
node-version: ['20.x', '21.x', '22.x', '23.x', '24.x']
76+
node-version: ['20', '21', '22', '23', '24']
7777
os: ['ubuntu-22.04', 'ubuntu-24.04', 'windows-latest', 'windows-11-arm', 'ubuntu-22.04-arm', 'ubuntu-24.04-arm', 'macos-latest', 'macos-13']
7878
runs-on: ${{ matrix.os }}
7979
steps:
@@ -97,6 +97,7 @@ jobs:
9797
strategy:
9898
fail-fast: true
9999
matrix:
100+
node-version: ['24']
100101
os: [windows, macos, ubuntu]
101102
deno_version: [2.x]
102103
include:
@@ -133,10 +134,10 @@ jobs:
133134
- uses: actions/checkout@v4
134135
with:
135136
persist-credentials: false
136-
- name: Use Node.js
137+
- name: Use Node.js ${{ matrix.node-version }}
137138
uses: actions/setup-node@v4
138139
with:
139-
node-version: '24.x'
140+
node-version: ${{ matrix.node-version }}
140141
- uses: denoland/setup-deno@v2
141142
with:
142143
deno-version: v${{ matrix.deno_version }}

.github/workflows/npm-release.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- name: Use Node.js
3232
uses: actions/setup-node@v4
3333
with:
34-
node-version: '24.x'
34+
node-version: '24'
3535
registry-url: https://registry.npmjs.org/
3636
- name: Trim CI agent
3737
run: |
@@ -196,7 +196,7 @@ jobs:
196196
- name: Use Node.js
197197
uses: actions/setup-node@v4
198198
with:
199-
node-version: '24.x'
199+
node-version: '24'
200200
registry-url: https://registry.npmjs.org/
201201
- uses: oras-project/setup-oras@v1
202202
- name: Free disk space
@@ -279,7 +279,7 @@ jobs:
279279
- name: Use Node.js
280280
uses: actions/setup-node@v4
281281
with:
282-
node-version: '24.x'
282+
node-version: '24'
283283
registry-url: https://registry.npmjs.org/
284284
- uses: oras-project/setup-oras@v1
285285
- name: Free disk space
@@ -349,7 +349,7 @@ jobs:
349349
- name: Use Node.js
350350
uses: actions/setup-node@v4
351351
with:
352-
node-version: '24.x'
352+
node-version: '24'
353353
registry-url: https://registry.npmjs.org/
354354
- uses: oras-project/setup-oras@v1
355355
- name: Free disk space
@@ -419,7 +419,7 @@ jobs:
419419
- name: Use Node.js
420420
uses: actions/setup-node@v4
421421
with:
422-
node-version: '24.x'
422+
node-version: '24'
423423
registry-url: https://registry.npmjs.org/
424424
- uses: oras-project/setup-oras@v1
425425
- name: Free disk space
@@ -471,7 +471,7 @@ jobs:
471471
- name: Use Node.js
472472
uses: actions/setup-node@v4
473473
with:
474-
node-version: '24.x'
474+
node-version: '24'
475475
registry-url: https://registry.npmjs.org/
476476
- uses: oras-project/setup-oras@v1
477477
- name: Free disk space

.github/workflows/nydus-demo.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
fail-fast: false
1010
matrix:
1111
java-version: ['24']
12-
node-version: ['23.x']
12+
node-version: ['24']
1313
os: ['ubuntu-latest']
1414
runs-on: ${{ matrix.os }}
1515
steps:

.github/workflows/repotests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ jobs:
143143
fail-fast: true
144144
matrix:
145145
java-version: ['24']
146-
node-version: ['23.x']
146+
node-version: ['24']
147147
os: ['self-hosted-ubuntu', 'ubuntu-24.04-arm', 'windows-latest', 'macos-15']
148148
runs-on: ${{ matrix.os }}
149149
steps:
@@ -904,7 +904,7 @@ jobs:
904904
fail-fast: true
905905
matrix:
906906
java-version: ['24']
907-
node-version: ['23.x']
907+
node-version: ['24']
908908
os: ['ubuntu-24.04', 'ubuntu-24.04-arm', 'macos-15']
909909
runs-on: ${{ matrix.os }}
910910
env:

0 commit comments

Comments
 (0)