check failure fix

This commit is contained in:
Aparna Jyothi 2025-06-09 13:12:27 +05:30
parent b8efbc5bb0
commit cfd17d94f5
2 changed files with 2 additions and 2 deletions

2
dist/setup/index.js vendored
View file

@ -96945,7 +96945,7 @@ function cacheDependencies(cache, pythonVersion) {
resolvedDependencyPath = path.relative(workspace, targetPath); resolvedDependencyPath = path.relative(workspace, targetPath);
core.info(`Resolved cache-dependency-path: ${resolvedDependencyPath}`); core.info(`Resolved cache-dependency-path: ${resolvedDependencyPath}`);
} }
const cacheDistributor = (0, cache_factory_1.getCacheDistributor)(cache, pythonVersion, resolvedDependencyPath); const cacheDistributor = (0, cache_factory_1.getCacheDistributor)(cache, pythonVersion, cacheDependencyPath);
yield cacheDistributor.restoreCache(); yield cacheDistributor.restoreCache();
}); });
} }

View file

@ -59,7 +59,7 @@ export async function cacheDependencies(cache: string, pythonVersion: string) {
const cacheDistributor = getCacheDistributor( const cacheDistributor = getCacheDistributor(
cache, cache,
pythonVersion, pythonVersion,
resolvedDependencyPath cacheDependencyPath
); );
await cacheDistributor.restoreCache(); await cacheDistributor.restoreCache();
} }