mirror of
https://github.com/actions/setup-java.git
synced 2025-04-21 02:16:45 +00:00
reflect changes to the dist dir
This commit is contained in:
parent
945940ebfb
commit
0591f86118
2 changed files with 4 additions and 10 deletions
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}`);
|
||||
}
|
||||
catch (error) {
|
||||
if (error.name === cache.ValidationError.name) {
|
||||
throw error;
|
||||
}
|
||||
else if (error.name === cache.ReserveCacheError.name) {
|
||||
if (error.name === cache.ReserveCacheError.name) {
|
||||
core.info(error.message);
|
||||
}
|
||||
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}`);
|
||||
}
|
||||
catch (error) {
|
||||
if (error.name === cache.ValidationError.name) {
|
||||
throw error;
|
||||
}
|
||||
else if (error.name === cache.ReserveCacheError.name) {
|
||||
if (error.name === cache.ReserveCacheError.name) {
|
||||
core.info(error.message);
|
||||
}
|
||||
else {
|
||||
core.warning(error.message);
|
||||
throw error;
|
||||
}
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue