mirror of
https://github.com/actions/setup-node.git
synced 2025-06-29 22:23:47 +00:00
Temporarily disable cache usage
This commit is contained in:
parent
56899e050a
commit
d5ae932ee7
3 changed files with 8 additions and 5 deletions
|
@ -25,7 +25,8 @@ export async function getNode(versionSpec: string) {
|
|||
toolPath = tc.find('node', versionSpec);
|
||||
|
||||
// If not found in cache, download
|
||||
if (!toolPath) {
|
||||
// Usage of pre-cached Node.js is temporarily disabled.
|
||||
if (true) {
|
||||
let version: string;
|
||||
const c = semver.clean(versionSpec) || '';
|
||||
// If explicit version
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue