From 4b5f33df54024b168988b503fb00b272917c11ac Mon Sep 17 00:00:00 2001 From: Sankalp Kotewar <98868223+kotewar@users.noreply.github.com> Date: Thu, 1 Dec 2022 08:27:08 +0000 Subject: [PATCH] Updated new actions' input descriptions --- restore/action.yml | 4 ++-- save/action.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/restore/action.yml b/restore/action.yml index 261735f..b8f0df4 100644 --- a/restore/action.yml +++ b/restore/action.yml @@ -3,10 +3,10 @@ description: 'Restore Cache artifacts like dependencies and build outputs to imp author: 'GitHub' inputs: path: - description: 'A list of files, directories, and wildcard patterns to cache and restore' + description: 'The same list of files, directories, and wildcard patterns to restore cache that were used while saving it' required: true key: - description: 'An explicit key for restoring and saving the cache' + description: 'An explicit key for restoring the cache' required: true restore-keys: description: 'An ordered list of keys to use for restoring stale cache if no cache hit occurred for key. Note `cache-hit` returns false in this case.' diff --git a/save/action.yml b/save/action.yml index af9f7b9..614f480 100644 --- a/save/action.yml +++ b/save/action.yml @@ -3,10 +3,10 @@ description: 'Save Cache artifacts like dependencies and build outputs to improv author: 'GitHub' inputs: path: - description: 'A list of files, directories, and wildcard patterns to cache and restore' + description: 'A list of files, directories, and wildcard patterns to cache' required: true key: - description: 'An explicit key for restoring and saving the cache' + description: 'An explicit key for saving the cache' required: true upload-chunk-size: description: 'The chunk size used to split up large files during upload, in bytes'