mirror of
https://code.forgejo.org/actions/setup-node.git
synced 2025-05-20 21:14:45 +00:00
Fix armv7 cache issue (#794)
This commit is contained in:
parent
ef9c88b169
commit
e2d34eacc8
2 changed files with 6 additions and 2 deletions
|
@ -88,7 +88,11 @@ export default abstract class BaseDistribution {
|
|||
}
|
||||
|
||||
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[]> {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue