mirror of
https://github.com/actions/setup-java.git
synced 2025-05-23 02:51:46 +00:00
reflect changes to the dist dir
This commit is contained in:
parent
945940ebfb
commit
0591f86118
7
dist/cleanup/index.js
vendored
7
dist/cleanup/index.js
vendored
@ -64612,14 +64612,11 @@ function save(id) {
|
|||||||
core.info(`Cache saved with the key: ${primaryKey}`);
|
core.info(`Cache saved with the key: ${primaryKey}`);
|
||||||
}
|
}
|
||||||
catch (error) {
|
catch (error) {
|
||||||
if (error.name === cache.ValidationError.name) {
|
if (error.name === cache.ReserveCacheError.name) {
|
||||||
throw error;
|
|
||||||
}
|
|
||||||
else if (error.name === cache.ReserveCacheError.name) {
|
|
||||||
core.info(error.message);
|
core.info(error.message);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
core.warning(error.message);
|
throw error;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
7
dist/setup/index.js
vendored
7
dist/setup/index.js
vendored
@ -19008,14 +19008,11 @@ function save(id) {
|
|||||||
core.info(`Cache saved with the key: ${primaryKey}`);
|
core.info(`Cache saved with the key: ${primaryKey}`);
|
||||||
}
|
}
|
||||||
catch (error) {
|
catch (error) {
|
||||||
if (error.name === cache.ValidationError.name) {
|
if (error.name === cache.ReserveCacheError.name) {
|
||||||
throw error;
|
|
||||||
}
|
|
||||||
else if (error.name === cache.ReserveCacheError.name) {
|
|
||||||
core.info(error.message);
|
core.info(error.message);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
core.warning(error.message);
|
throw error;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user