Merge 09158c28ef840ca6c398a127331f182364d90acc into 5e2628c959b9ade56971c0afcebbe5332d44b398

This commit is contained in:
leavesster 2025-08-01 10:15:58 +08:00 committed by GitHub
commit f07e71fc1e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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));