diff --git a/dist/index.js b/dist/index.js index 69c25561..333a1f6e 100644 --- a/dist/index.js +++ b/dist/index.js @@ -12344,6 +12344,7 @@ function acquireNode(version) { let downloadUrl = `https://nodejs.org/dist/v${version}/${urlFileName}`; let downloadPath; try { + core.info(`Downloading ${downloadUrl}`); downloadPath = yield tc.downloadTool(downloadUrl); } catch (err) { diff --git a/src/installer.ts b/src/installer.ts index 6267e0c8..44618410 100644 --- a/src/installer.ts +++ b/src/installer.ts @@ -148,6 +148,7 @@ async function acquireNode(version: string): Promise { let downloadPath: string; try { + core.info(`Downloading ${downloadUrl}`); downloadPath = await tc.downloadTool(downloadUrl); } catch (err) { if (err instanceof tc.HTTPError && err.httpStatusCode == 404) {