From 2ae92649017edf0c0fb0c56a5f0bf83cf843a706 Mon Sep 17 00:00:00 2001 From: Bryan MacFarlane Date: Mon, 4 May 2020 12:44:15 -0400 Subject: [PATCH] back to master --- dist/index.js | 3 +-- src/installer.ts | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/dist/index.js b/dist/index.js index b274a664..e6aa40be 100644 --- a/dist/index.js +++ b/dist/index.js @@ -13055,8 +13055,7 @@ exports.getNode = getNode; function getInfoFromManifest(versionSpec, stable, token) { return __awaiter(this, void 0, void 0, function* () { let info = null; - const releases = yield tc.getManifestFromRepo('actions', 'node-versions', token, 'update-versions-manifest-file' // TODO: remove after testing - ); + const releases = yield tc.getManifestFromRepo('actions', 'node-versions', token); console.log(`matching ${versionSpec}...`); const rel = yield tc.findFromManifest(versionSpec, stable, releases); if (rel && rel.files.length > 0) { diff --git a/src/installer.ts b/src/installer.ts index 6daed5d9..12294824 100644 --- a/src/installer.ts +++ b/src/installer.ts @@ -123,8 +123,7 @@ async function getInfoFromManifest( const releases = await tc.getManifestFromRepo( 'actions', 'node-versions', - token, - 'update-versions-manifest-file' // TODO: remove after testing + token ); console.log(`matching ${versionSpec}...`); const rel = await tc.findFromManifest(versionSpec, stable, releases);