We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 40e244d commit 5f10e34Copy full SHA for 5f10e34
dist/index.js
@@ -12344,6 +12344,7 @@ function acquireNode(version) {
12344
let downloadUrl = `https://nodejs.org/dist/v${version}/${urlFileName}`;
12345
let downloadPath;
12346
try {
12347
+ core.info(`Downloading ${downloadUrl}`);
12348
downloadPath = yield tc.downloadTool(downloadUrl);
12349
}
12350
catch (err) {
src/installer.ts
@@ -148,6 +148,7 @@ async function acquireNode(version: string): Promise<string> {
148
let downloadPath: string;
149
150
151
152
downloadPath = await tc.downloadTool(downloadUrl);
153
} catch (err) {
154
if (err instanceof tc.HTTPError && err.httpStatusCode == 404) {
0 commit comments