Skip to content

Commit 944dfc3

Browse files
committed
[TEST]
1 parent 270c9a0 commit 944dfc3

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

dist/setup/index.js

+1-4
Original file line numberDiff line numberDiff line change
@@ -61317,9 +61317,7 @@ function isLtsAlias(versionSpec) {
6131761317
}
6131861318
function getManifest(auth) {
6131961319
core.debug('Getting manifest from actions/node-versions@main');
61320-
let res = tc.getManifestFromRepo('actions', 'node-versions', auth, 'main');
61321-
console.log(res, "LOOK HERE");
61322-
return res;
61320+
return tc.getManifestFromRepo('actions', 'node-versions', auth, 'main');
6132361321
}
6132461322
function resolveLtsAliasFromManifest(versionSpec, stable, manifest) {
6132561323
var _a;
@@ -61344,7 +61342,6 @@ function getInfoFromManifest(versionSpec, stable, auth, osArch = translateArchTo
6134461342
if (!manifest) {
6134561343
core.debug('No manifest cached');
6134661344
manifest = yield getManifest(auth);
61347-
console.log(manifest, "LOOK HERE 2");
6134861345
}
6134961346
const rel = yield tc.findFromManifest(versionSpec, stable, manifest, osArch);
6135061347
if (rel && rel.files.length > 0) {

src/installer.ts

+1-4
Original file line numberDiff line numberDiff line change
@@ -198,9 +198,7 @@ function isLtsAlias(versionSpec: string): boolean {
198198

199199
function getManifest(auth: string | undefined): Promise<tc.IToolRelease[]> {
200200
core.debug('Getting manifest from actions/node-versions@main');
201-
let res = tc.getManifestFromRepo('actions', 'node-versions', auth, 'main');
202-
console.log(res, "LOOK HERE");
203-
return res;
201+
return tc.getManifestFromRepo('actions', 'node-versions', auth, 'main');
204202
}
205203

206204
function resolveLtsAliasFromManifest(
@@ -250,7 +248,6 @@ async function getInfoFromManifest(
250248
if (!manifest) {
251249
core.debug('No manifest cached');
252250
manifest = await getManifest(auth);
253-
console.log(manifest, "LOOK HERE 2");
254251
}
255252

256253
const rel = await tc.findFromManifest(versionSpec, stable, manifest, osArch);

0 commit comments

Comments
 (0)