(cache: string, pythonVersion: string)
| 37 | } |
| 38 | |
| 39 | async function cacheDependencies(cache: string, pythonVersion: string) { |
| 40 | const cacheDependencyPath = |
| 41 | core.getInput('cache-dependency-path') || undefined; |
| 42 | const cacheDistributor = getCacheDistributor( |
| 43 | cache, |
| 44 | pythonVersion, |
| 45 | cacheDependencyPath |
| 46 | ); |
| 47 | await cacheDistributor.restoreCache(); |
| 48 | } |
| 49 | |
| 50 | function resolveVersionInputFromDefaultFile(): string[] { |
| 51 | const couples: [string, (versionFile: string) => string[]][] = [ |
no test coverage detected