diff --git a/dist/setup/index.js b/dist/setup/index.js index 294ada67c..19df95db3 100644 --- a/dist/setup/index.js +++ b/dist/setup/index.js @@ -61317,9 +61317,7 @@ function isLtsAlias(versionSpec) { } function getManifest(auth) { core.debug('Getting manifest from actions/node-versions@main'); - let res = tc.getManifestFromRepo('actions', 'node-versions', auth, 'main'); - console.log(res, "LOOK HERE"); - return res; + return tc.getManifestFromRepo('actions', 'node-versions', auth, 'main'); } function resolveLtsAliasFromManifest(versionSpec, stable, manifest) { var _a; @@ -61344,7 +61342,6 @@ function getInfoFromManifest(versionSpec, stable, auth, osArch = translateArchTo if (!manifest) { core.debug('No manifest cached'); manifest = yield getManifest(auth); - console.log(manifest, "LOOK HERE 2"); } const rel = yield tc.findFromManifest(versionSpec, stable, manifest, osArch); if (rel && rel.files.length > 0) { diff --git a/src/installer.ts b/src/installer.ts index bf2accd6f..a9baae0a1 100644 --- a/src/installer.ts +++ b/src/installer.ts @@ -198,9 +198,7 @@ function isLtsAlias(versionSpec: string): boolean { function getManifest(auth: string | undefined): Promise { core.debug('Getting manifest from actions/node-versions@main'); - let res = tc.getManifestFromRepo('actions', 'node-versions', auth, 'main'); - console.log(res, "LOOK HERE"); - return res; + return tc.getManifestFromRepo('actions', 'node-versions', auth, 'main'); } function resolveLtsAliasFromManifest( @@ -250,7 +248,6 @@ async function getInfoFromManifest( if (!manifest) { core.debug('No manifest cached'); manifest = await getManifest(auth); - console.log(manifest, "LOOK HERE 2"); } const rel = await tc.findFromManifest(versionSpec, stable, manifest, osArch);