1
0
Fork 0
mirror of https://github.com/actions/cache.git synced 2025-07-10 21:00:46 +00:00

Changes after rebase

This commit is contained in:
Marc Mueller 2023-01-08 12:10:17 +01:00
parent 1bb6d2503c
commit e614c5820d
7 changed files with 16 additions and 13 deletions

View file

@ -34,12 +34,13 @@ async function restoreImpl(
const enableCrossOsArchive = utils.getInputAsBool(
Inputs.EnableCrossOsArchive
);
const dryRun = utils.getInputAsBool(Inputs.DryRun);
const cacheKey = await cache.restoreCache(
cachePaths,
primaryKey,
restoreKeys,
{ dryRun: core.getBooleanInput(Inputs.DryRun) },
{ dryRun: dryRun },
enableCrossOsArchive
);