Update dependencies.

This commit is contained in:
Fabio Niephaus
2023-04-11 09:02:29 +02:00
parent 90a2c32c8b
commit cf001e2d43
6 changed files with 17210 additions and 24600 deletions

View File

@@ -167,6 +167,10 @@ export async function save(id: string): Promise<void> {
await cache.saveCache(packageManager.path, primaryKey)
core.info(`Cache saved with the key: ${primaryKey}`)
} catch (error) {
if (!(error instanceof Error)) {
core.info(`Not an Error: ${error}`)
throw error
}
if (error.name === cache.ReserveCacheError.name) {
core.info(error.message)
} else {