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);