1
0
Fork 0
mirror of https://code.forgejo.org/actions/cache.git synced 2025-04-05 05:47:48 +02:00

Updated error message

This commit is contained in:
Sankalp Kotewar 2022-11-17 19:06:54 +00:00 committed by GitHub
parent 164ae74f71
commit e39391011c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -48997,7 +48997,7 @@ function run() {
const isExactKeyMatch = utils.isExactKeyMatch(primaryKey, cacheKey);
utils.setCacheHitOutput(isExactKeyMatch);
if (!isExactKeyMatch && core.getInput(constants_1.Inputs.StrictRestore) == "true") {
throw new Error("Cache with exact key not found, hence exiting the workflow as strict-restore is set to true");
throw new Error("Restored cache doesn't match the key in the input, hence exiting the workflow as strict-restore requirement is not met.");
}
core.info(`Cache restored from key: ${cacheKey}`);
}

View file

@ -54,7 +54,7 @@ async function run(): Promise<void> {
if (!isExactKeyMatch && core.getInput(Inputs.StrictRestore) == "true") {
throw new Error(
"Cache with exact key not found, hence exiting the workflow as strict-restore is set to true"
"Restored cache doesn't match the key in the input, hence exiting the workflow as strict-restore requirement is not met."
);
}
core.info(`Cache restored from key: ${cacheKey}`);