Skip to content

Commit 4b35aba

Browse files
committed
Update actions to Node.js 24
1 parent 03bd216 commit 4b35aba

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/build-auto.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Install Node.js
1717
uses: actions/setup-node@v4
1818
with:
19-
node-version: 22
19+
node-version: 24
2020
cache: npm
2121
- name: Install dependencies
2222
run: npm ci

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Install Node.js
1818
uses: actions/setup-node@v4
1919
with:
20-
node-version: 22
20+
node-version: 24
2121
- name: Install dependencies
2222
run: npm ci --loglevel=info
2323
- name: Fetch
@@ -49,7 +49,7 @@ jobs:
4949
- name: Install Node.js
5050
uses: actions/setup-node@v4
5151
with:
52-
node-version: 22
52+
node-version: 24
5353
- name: Install dependencies
5454
run: npm ci --loglevel=info
5555
- name: Fetch
@@ -92,7 +92,7 @@ jobs:
9292
- name: Install Node.js
9393
uses: actions/setup-node@v4
9494
with:
95-
node-version: 22
95+
node-version: 24
9696
# The repository being on D: means that node_modules IO will be fast, but npm still downloads
9797
# packages to a temporary folder for caching which is on C: by default. We need to make sure
9898
# npm uses the D: drive instead otherwise we still get bottlenecked by C:.

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Install Node.js
2424
uses: actions/setup-node@v4
2525
with:
26-
node-version: 22
26+
node-version: 24
2727
- name: Install dependencies
2828
run: npm ci --loglevel=info
2929
- name: Fetch
@@ -60,7 +60,7 @@ jobs:
6060
- name: Install Node.js
6161
uses: actions/setup-node@v4
6262
with:
63-
node-version: 22
63+
node-version: 24
6464
- name: Install dependencies
6565
run: npm ci --loglevel=info
6666
- name: Fetch
@@ -126,7 +126,7 @@ jobs:
126126
- name: Install Node.js
127127
uses: actions/setup-node@v4
128128
with:
129-
node-version: 22
129+
node-version: 24
130130
# The repository being on D: means that node_modules IO will be fast, but npm still downloads
131131
# packages to a temporary folder for caching which is on C: by default. We need to make sure
132132
# npm uses the D: drive instead otherwise we still get bottlenecked by C:.

0 commit comments

Comments
 (0)