Revert "Temporarily disable image cache usage for v1"

This commit is contained in:
Alena Sviridenko 2021-08-04 17:00:50 +03:00 committed by GitHub
parent eb416799cf
commit 108628bcbd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 14 deletions

View file

@ -25,8 +25,7 @@ export async function getNode(versionSpec: string) {
toolPath = tc.find('node', versionSpec);
// If not found in cache, download
// Usage of pre-cached Node.js is temporarily disabled.
if (true) {
if (!toolPath) {
let version: string;
const c = semver.clean(versionSpec) || '';
// If explicit version
@ -46,8 +45,7 @@ export async function getNode(versionSpec: string) {
toolPath = tc.find('node', version);
}
// Usage of pre-cached Node.js is temporarily disabled.
if (true) {
if (!toolPath) {
// download, extract, cache
toolPath = await acquireNode(version);
}
@ -148,7 +146,6 @@ async function acquireNode(version: string): Promise<string> {
let downloadPath: string;
try {
core.info(`Downloading ${downloadUrl}`);
downloadPath = await tc.downloadTool(downloadUrl);
} catch (err) {
if (err instanceof tc.HTTPError && err.httpStatusCode == 404) {