Fix wrong cacheDependencyPathHash

This commit is contained in:
Kevin Stillhammer 2024-12-20 11:38:00 +01:00
parent e3fb95a689
commit 7d00f8cf5c
No known key found for this signature in database
3 changed files with 6 additions and 0 deletions

2
dist/save-cache/index.js generated vendored
View file

@ -91492,6 +91492,8 @@ function computeKeys(version) {
if (cacheDependencyPathHash === "-") {
core.warning(`No file matched to [${inputs_1.cacheDependencyGlob.split("\n").join(",")}]. The cache will never get invalidated. Make sure you have checked out the target repository and configured the cache-dependency-glob input correctly.`);
}
}
if (cacheDependencyPathHash === "-") {
cacheDependencyPathHash = "-no-dependency-glob";
}
const suffix = inputs_1.cacheSuffix ? `-${inputs_1.cacheSuffix}` : "";

2
dist/setup/index.js generated vendored
View file

@ -96575,6 +96575,8 @@ function computeKeys(version) {
if (cacheDependencyPathHash === "-") {
core.warning(`No file matched to [${inputs_1.cacheDependencyGlob.split("\n").join(",")}]. The cache will never get invalidated. Make sure you have checked out the target repository and configured the cache-dependency-glob input correctly.`);
}
}
if (cacheDependencyPathHash === "-") {
cacheDependencyPathHash = "-no-dependency-glob";
}
const suffix = inputs_1.cacheSuffix ? `-${inputs_1.cacheSuffix}` : "";

View file

@ -47,6 +47,8 @@ async function computeKeys(version: string): Promise<string> {
`No file matched to [${cacheDependencyGlob.split("\n").join(",")}]. The cache will never get invalidated. Make sure you have checked out the target repository and configured the cache-dependency-glob input correctly.`,
);
}
}
if (cacheDependencyPathHash === "-") {
cacheDependencyPathHash = "-no-dependency-glob";
}
const suffix = cacheSuffix ? `-${cacheSuffix}` : "";