mirror of
https://github.com/actions/setup-node.git
synced 2025-04-21 17:01:00 +00:00
Fix armv7 cache issue
This commit is contained in:
parent
e33196f742
commit
6ca7a3375d
1 changed files with 1 additions and 1 deletions
|
@ -88,7 +88,7 @@ export default abstract class BaseDistribution {
|
||||||
}
|
}
|
||||||
|
|
||||||
protected findVersionInHostedToolCacheDirectory() {
|
protected findVersionInHostedToolCacheDirectory() {
|
||||||
return tc.find('node', this.nodeInfo.versionSpec, this.nodeInfo.arch);
|
return tc.find('node', this.nodeInfo.versionSpec, this.translateArchToDistUrl(this.nodeInfo.arch));
|
||||||
}
|
}
|
||||||
|
|
||||||
protected async getNodeJsVersions(): Promise<INodeVersion[]> {
|
protected async getNodeJsVersions(): Promise<INodeVersion[]> {
|
||||||
|
|
Loading…
Add table
Reference in a new issue