12
0
Fork 0
mirror of https://github.com/actions/cache.git synced 2026-07-03 21:59:30 +00:00

Add fail-on-error input to fail workflow on cache save errors

This commit is contained in:
nathan.harris 2026-04-17 13:58:23 -05:00
parent 27d5ce7f10
commit b3c661a9c5
No known key found for this signature in database
8 changed files with 119 additions and 2 deletions

View file

@ -5,7 +5,9 @@ export enum Inputs {
UploadChunkSize = "upload-chunk-size", // Input for cache, save action
EnableCrossOsArchive = "enableCrossOsArchive", // Input for cache, restore, save action
FailOnCacheMiss = "fail-on-cache-miss", // Input for cache, restore action
LookupOnly = "lookup-only" // Input for cache, restore action
LookupOnly = "lookup-only", // Input for cache, restore action
FailOnError = "fail-on-error", // Input for save action
FailOnSaveError = "fail-on-save-error" // Input for cache action (combined), alias for FailOnError
}
export enum Outputs {