mirror of
https://github.com/actions/setup-node
synced 2025-04-09 18:35:51 +00:00
Merge 09158c28ef
into 49933ea528
This commit is contained in:
commit
67e2f388f7
1 changed files with 1 additions and 13 deletions
|
@ -46,19 +46,7 @@ export const restoreCache = async (
|
|||
|
||||
core.saveState(State.CachePrimaryKey, primaryKey);
|
||||
|
||||
const isManagedByYarnBerry = await repoHasYarnBerryManagedDependencies(
|
||||
packageManagerInfo,
|
||||
cacheDependencyPath
|
||||
);
|
||||
let cacheKey: string | undefined;
|
||||
if (isManagedByYarnBerry) {
|
||||
core.info(
|
||||
'All dependencies are managed locally by yarn3, the previous cache can be used'
|
||||
);
|
||||
cacheKey = await cache.restoreCache(cachePaths, primaryKey, [keyPrefix]);
|
||||
} else {
|
||||
cacheKey = await cache.restoreCache(cachePaths, primaryKey);
|
||||
}
|
||||
const cacheKey = await cache.restoreCache(cachePaths, primaryKey, [keyPrefix]);
|
||||
|
||||
core.setOutput('cache-hit', Boolean(cacheKey));
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue