1
0
Fork 0
mirror of https://code.forgejo.org/actions/cache.git synced 2025-04-23 21:09:53 +02:00

Restore original behavior of cache-hit output (#1467)

* Restore original behavior of `cache-hit` output

* Bump version to 4.1.1
This commit is contained in:
Josh Gross 2024-10-08 13:08:22 -04:00 committed by GitHub
parent 2cdf405574
commit 3624ceb22c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 18 additions and 12 deletions

View file

@ -59415,7 +59415,8 @@ function restoreImpl(stateProvider, earlyExit) {
const lookupOnly = utils.getInputAsBool(constants_1.Inputs.LookupOnly);
const cacheKey = yield cache.restoreCache(cachePaths, primaryKey, restoreKeys, { lookupOnly: lookupOnly }, enableCrossOsArchive);
if (!cacheKey) {
core.setOutput(constants_1.Outputs.CacheHit, false.toString());
// `cache-hit` is intentionally not set to `false` here to preserve existing behavior
// See https://github.com/actions/cache/issues/1466
if (failOnCacheMiss) {
throw new Error(`Failed to restore cache entry. Exiting as fail-on-cache-miss is set. Input key: ${primaryKey}`);
}