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(
94
94
`Acquiring ${ info . resolvedVersion } - ${ info . arch } from ${ info . downloadUrl } `
95
95
) ;
96
96
downloadPath = await tc . downloadTool ( info . downloadUrl , undefined , auth ) ;
97
- console . log ( "here bro 2" ) ;
98
97
} else {
99
98
core . info (
100
99
'Not found in manifest. Falling back to download directly from Node'
@@ -199,7 +198,9 @@ function isLtsAlias(versionSpec: string): boolean {
199
198
200
199
function getManifest ( auth : string | undefined ) : Promise < tc . IToolRelease [ ] > {
201
200
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 ;
203
204
}
204
205
205
206
function resolveLtsAliasFromManifest (
You can’t perform that action at this time.
0 commit comments