new build

pull/801/head
Deepak Dahiya 3 years ago committed by GitHub
parent 626c44ce85
commit 12086c7bbf

@ -48245,11 +48245,12 @@ function run() {
core.info(`Cache restored from key: ${cacheKey}`);
}
catch (error) {
if (error.name === cache.ValidationError.name) {
const typedError = error;
if (typedError.name === cache.ValidationError.name) {
throw error;
}
else {
utils.logWarning(error.message);
utils.logWarning(typedError.message);
utils.setCacheHitOutput(false);
}
}

@ -46645,14 +46645,15 @@ function run() {
core.info(`Cache saved with key: ${primaryKey}`);
}
catch (error) {
if (error.name === cache.ValidationError.name) {
const typedError = error;
if (typedError.name === cache.ValidationError.name) {
throw error;
}
else if (error.name === cache.ReserveCacheError.name) {
core.info(error.message);
else if (typedError.name === cache.ReserveCacheError.name) {
core.info(typedError.message);
}
else {
utils.logWarning(error.message);
utils.logWarning(typedError.message);
}
}
}

Loading…
Cancel
Save