info message

This commit is contained in:
Florian Hübner 2023-02-12 16:48:34 +01:00
parent 4e210ad7a2
commit 8dc7165617

View file

@ -20,11 +20,12 @@ export const restoreCache = async (
let dependencyFilePath: string
try {
core.info('Trying to resolve lockfile path.');
dependencyFilePath = cacheDependencyPath
? cacheDependencyPath
: findDependencyFile(packageManagerInfo);
} catch (e) {
core.info(e);
core.info(e.message);
core.setOutput(Outputs.CacheHit, false);
return;
}