-
Notifications
You must be signed in to change notification settings - Fork 834
Closed as not planned
Labels
feature requestNew feature or request to improve the current logicNew feature or request to improve the current logic
Description
As can be seen in their examples: https://github.com/actions/cache/blob/main/examples.md#java---gradle
It is recommended that additional restore-keys are passed when using actions/cache. https://github.com/actions/cache#inputs
Line 100 in 5b36705
| const matchedKey = await cache.restoreCache(packageManager.path, primaryKey); |
const restoreKey = `${CACHE_KEY_PREFIX}-${process.env['RUNNER_OS']}-${packageManager.id}`;
const matchedKey = await cache.restoreCache(packageManager.path, primaryKey, [restoreKey]); Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
feature requestNew feature or request to improve the current logicNew feature or request to improve the current logic