mirror of
https://github.com/actions/setup-java.git
synced 2024-11-23 14:36:09 +08:00
Is version.sbt still being included...
This commit is contained in:
parent
f228ab54b9
commit
ed3ab602f8
5372
dist/cleanup/index.js
vendored
5372
dist/cleanup/index.js
vendored
File diff suppressed because it is too large
Load Diff
5372
dist/setup/index.js
vendored
5372
dist/setup/index.js
vendored
File diff suppressed because it is too large
Load Diff
@ -93,13 +93,15 @@ async function computeCacheKey(
|
|||||||
const pattern = cacheDependencyPath
|
const pattern = cacheDependencyPath
|
||||||
? cacheDependencyPath.trim().split('\n')
|
? cacheDependencyPath.trim().split('\n')
|
||||||
: packageManager.pattern;
|
: packageManager.pattern;
|
||||||
const fileHash = await glob.hashFiles(pattern.join('\n'));
|
const fileHash = await glob.hashFiles(pattern.join('\n'), undefined, undefined, true);
|
||||||
if (!fileHash) {
|
if (!fileHash) {
|
||||||
throw new Error(
|
throw new Error(
|
||||||
`No file in ${process.cwd()} matched to [${pattern}], make sure you have checked out the target repository`
|
`No file in ${process.cwd()} matched to [${pattern}], make sure you have checked out the target repository`
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
return `${CACHE_KEY_PREFIX}-${process.env['RUNNER_OS']}-${packageManager.id}-${fileHash}`;
|
const cacheKey = `${CACHE_KEY_PREFIX}-${process.env['RUNNER_OS']}-${packageManager.id}-${fileHash}`;
|
||||||
|
core.info(`cacheKey is ${cacheKey}`);
|
||||||
|
return cacheKey;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user