mirror of
https://github.com/actions/cache.git
synced 2025-04-19 18:46:46 +00:00
Rename option to lookup-only
This commit is contained in:
parent
d1960e64f9
commit
2ef4e0621f
16 changed files with 68 additions and 68 deletions
|
@ -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.
|
||||
* `dry-run` - Skip downloading cache. Only check if cache entry exists. Default: false
|
||||
* `lookup-only` - Skip downloading cache. Only check if cache entry exists. Default: false
|
||||
|
||||
## Outputs
|
||||
|
||||
|
|
|
@ -15,7 +15,7 @@ inputs:
|
|||
description: 'An optional boolean when enabled, allows windows runners to restore caches that were saved on other platforms'
|
||||
default: 'false'
|
||||
required: false
|
||||
dry-run:
|
||||
lookup-only:
|
||||
description: 'Skip downloading cache. Only check if cache entry exists'
|
||||
default: 'false'
|
||||
required: false
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue