mirror of
https://github.com/actions/cache.git
synced 2026-01-13 22:50:37 +11:00
Add actions/cache/check action
This commit is contained in:
parent
537862ffdb
commit
9dd99b0404
9 changed files with 61502 additions and 11 deletions
11
src/options.ts
Normal file
11
src/options.ts
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
/**
|
||||
* Options to control cache restore
|
||||
*/
|
||||
export interface RestoreOptions {
|
||||
/**
|
||||
* Weather to skip downloading the cache entry.
|
||||
* If lookupOnly is set to true, the restore function will only check if
|
||||
* a matching cache entry exists.
|
||||
*/
|
||||
lookupOnly?: boolean;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue