From d05f7e6483ee37624300b3c82ba3ba22fcfda9ba Mon Sep 17 00:00:00 2001 From: Marc Mueller <30130371+cdce8p@users.noreply.github.com> Date: Mon, 9 Jan 2023 10:44:48 +0100 Subject: [PATCH] Update description --- action.yml | 2 +- restore/README.md | 2 +- restore/action.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/action.yml b/action.yml index 73e3060..931b891 100644 --- a/action.yml +++ b/action.yml @@ -19,7 +19,7 @@ inputs: default: 'false' required: false fail-on-cache-miss: - description: 'Fail the workflow if the cache is not found for the primary key' + description: 'Fail the workflow if the cache is not found for the primary key or no cache is found at all' default: 'false' required: false outputs: diff --git a/restore/README.md b/restore/README.md index 361a589..66a3dbc 100644 --- a/restore/README.md +++ b/restore/README.md @@ -7,7 +7,7 @@ The restore action, as the name suggest, restores a cache. It acts similar to th * `path` - A list of files, directories, and wildcard patterns to cache and restore. See [`@actions/glob`](https://github.com/actions/toolkit/tree/main/packages/glob) for supported patterns. * `key` - String used while saving cache for restoring the cache * `restore-keys` - An ordered list of prefix-matched keys to use for restoring stale cache if no cache hit occurred for key. -* `fail-on-cache-miss` - Fail the workflow if the cache is not found for the primary key +* `fail-on-cache-miss` - Fail the workflow if the cache is not found for the primary key or no cache is found at all ## Outputs diff --git a/restore/action.yml b/restore/action.yml index 6fa2935..731f07c 100644 --- a/restore/action.yml +++ b/restore/action.yml @@ -16,7 +16,7 @@ inputs: default: 'false' required: false fail-on-cache-miss: - description: 'Fail the workflow if the cache is not found for the primary key' + description: 'Fail the workflow if the cache is not found for the primary key or no cache is found at all' default: 'false' required: false outputs: