We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 54458e7 commit 1040ea4Copy full SHA for 1040ea4
.github/workflows/script.yml
@@ -19,7 +19,7 @@ jobs:
19
- name: Set up Node.js
20
uses: actions/setup-node@v4
21
with:
22
- node-version: '22' # You can specify your Node.js version here
+ node-version: '24' # You can specify your Node.js version here
23
24
- name: Install dependencies
25
run: npm install
src/nodeDownloader.js
@@ -6,7 +6,7 @@ import {dirname} from 'path';
6
7
import { URL } from 'url';
8
9
-const LTS_URL_PREFIX = 'https://nodejs.org/dist/latest-v20.x/';
+const LTS_URL_PREFIX = 'https://nodejs.org/dist/latest-v24.x/';
10
11
/**
12
* Fetches the latest Node.js version by making a request to a specified URL.
0 commit comments