File tree Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -12344,6 +12344,7 @@ function acquireNode(version) {
12344
12344
let downloadUrl = `https://nodejs.org/dist/v${version}/${urlFileName}`;
12345
12345
let downloadPath;
12346
12346
try {
12347
+ core.info(`Downloading ${downloadUrl}`);
12347
12348
downloadPath = yield tc.downloadTool(downloadUrl);
12348
12349
}
12349
12350
catch (err) {
Original file line number Diff line number Diff line change @@ -148,6 +148,7 @@ async function acquireNode(version: string): Promise<string> {
148
148
let downloadPath : string ;
149
149
150
150
try {
151
+ core . info ( `Downloading ${ downloadUrl } ` ) ;
151
152
downloadPath = await tc . downloadTool ( downloadUrl ) ;
152
153
} catch ( err ) {
153
154
if ( err instanceof tc . HTTPError && err . httpStatusCode == 404 ) {
You can’t perform that action at this time.
0 commit comments