mirror of
https://github.com/actions/setup-node.git
synced 2024-11-12 09:38:04 +00:00
Compare commits
3 Commits
dc23da1528
...
97227172fb
Author | SHA1 | Date | |
---|---|---|---|
|
97227172fb | ||
|
0a44ba7841 | ||
|
09158c28ef |
@ -21,7 +21,7 @@ See [action.yml](action.yml)
|
|||||||
- uses: actions/setup-node@v4
|
- uses: actions/setup-node@v4
|
||||||
with:
|
with:
|
||||||
# Version Spec of the version to use in SemVer notation.
|
# Version Spec of the version to use in SemVer notation.
|
||||||
# It also admits such aliases as lts, latest, nightly and canary builds
|
# It also admits such aliases as lts/*, latest, nightly and canary builds
|
||||||
# Examples: 12.x, 10.15.1, >=10.15.0, lts/Hydrogen, 16-nightly, latest, node
|
# Examples: 12.x, 10.15.1, >=10.15.0, lts/Hydrogen, 16-nightly, latest, node
|
||||||
node-version: ''
|
node-version: ''
|
||||||
|
|
||||||
|
@ -44,19 +44,7 @@ export const restoreCache = async (
|
|||||||
|
|
||||||
core.saveState(State.CachePrimaryKey, primaryKey);
|
core.saveState(State.CachePrimaryKey, primaryKey);
|
||||||
|
|
||||||
const isManagedByYarnBerry = await repoHasYarnBerryManagedDependencies(
|
const cacheKey = await cache.restoreCache(cachePaths, primaryKey, [keyPrefix]);
|
||||||
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);
|
|
||||||
}
|
|
||||||
|
|
||||||
core.setOutput('cache-hit', Boolean(cacheKey));
|
core.setOutput('cache-hit', Boolean(cacheKey));
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user