mirror of
https://github.com/actions/cache.git
synced 2025-04-22 03:56:45 +00:00
Update dependencies with older minimist version
This commit is contained in:
parent
c6762fdd6a
commit
887b9060fe
6 changed files with 2783 additions and 972 deletions
|
@ -49,7 +49,7 @@ async function run(): Promise<void> {
|
|||
uploadChunkSize: utils.getInputAsInt(Inputs.UploadChunkSize)
|
||||
});
|
||||
core.info(`Cache saved with key: ${primaryKey}`);
|
||||
} catch (error) {
|
||||
} catch (error: any) {
|
||||
if (error.name === cache.ValidationError.name) {
|
||||
throw error;
|
||||
} else if (error.name === cache.ReserveCacheError.name) {
|
||||
|
@ -58,7 +58,7 @@ async function run(): Promise<void> {
|
|||
utils.logWarning(error.message);
|
||||
}
|
||||
}
|
||||
} catch (error) {
|
||||
} catch (error: any) {
|
||||
utils.logWarning(error.message);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue