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) {
1234412344 let downloadUrl = `https://nodejs.org/dist/v${version}/${urlFileName}`;
1234512345 let downloadPath;
1234612346 try {
12347+ core.info(`Downloading ${downloadUrl}`);
1234712348 downloadPath = yield tc.downloadTool(downloadUrl);
1234812349 }
1234912350 catch (err) {
Original file line number Diff line number Diff line change @@ -148,6 +148,7 @@ async function acquireNode(version: string): Promise<string> {
148148 let downloadPath : string ;
149149
150150 try {
151+ core . info ( `Downloading ${ downloadUrl } ` ) ;
151152 downloadPath = await tc . downloadTool ( downloadUrl ) ;
152153 } catch ( err ) {
153154 if ( err instanceof tc . HTTPError && err . httpStatusCode == 404 ) {
You can’t perform that action at this time.
0 commit comments