mirror of
https://github.com/actions/setup-node.git
synced 2025-06-30 22:53:50 +00:00
Revert "Temporarily disable image cache usage for v1"
This commit is contained in:
parent
eb416799cf
commit
108628bcbd
3 changed files with 6 additions and 14 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue