File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -94,7 +94,6 @@ export async function getNode(
9494 `Acquiring ${ info . resolvedVersion } - ${ info . arch } from ${ info . downloadUrl } `
9595 ) ;
9696 downloadPath = await tc . downloadTool ( info . downloadUrl , undefined , auth ) ;
97- console . log ( "here bro 2" ) ;
9897 } else {
9998 core . info (
10099 'Not found in manifest. Falling back to download directly from Node'
@@ -199,7 +198,9 @@ function isLtsAlias(versionSpec: string): boolean {
199198
200199function getManifest ( auth : string | undefined ) : Promise < tc . IToolRelease [ ] > {
201200 core . debug ( 'Getting manifest from actions/node-versions@main' ) ;
202- return tc . getManifestFromRepo ( 'actions' , 'node-versions' , auth , 'main' ) ;
201+ let res = tc . getManifestFromRepo ( 'actions' , 'node-versions' , auth , 'main' ) ;
202+ console . log ( res , "LOOK HERE" ) ;
203+ return res ;
203204}
204205
205206function resolveLtsAliasFromManifest (
You can’t perform that action at this time.
0 commit comments