| 10 | } |
| 11 | |
| 12 | interface CacheInput { |
| 13 | path: string; |
| 14 | key: string; |
| 15 | restoreKeys?: string[]; |
| 16 | enableCrossOsArchive?: boolean; |
| 17 | failOnCacheMiss?: boolean; |
| 18 | lookupOnly?: boolean; |
| 19 | } |
| 20 | |
| 21 | export function setInputs(input: CacheInput): void { |
| 22 | setInput(Inputs.Path, input.path); |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…