diff --git a/dist/restore/index.js b/dist/restore/index.js index 9001398..04b4058 100644 --- a/dist/restore/index.js +++ b/dist/restore/index.js @@ -54465,6 +54465,9 @@ var __asyncValues = (undefined && undefined.__asyncValues) || function (o) { +process.on("uncaughtException", (e) => { + core.info(`[warning] ${e.message}`); +}); const stateKey = "RUST_CACHE_KEY"; const stateHash = "RUST_CACHE_HASH"; const home = external_os_default().homedir(); diff --git a/dist/save/index.js b/dist/save/index.js index 48e4e50..031ce47 100644 --- a/dist/save/index.js +++ b/dist/save/index.js @@ -54465,6 +54465,9 @@ var __asyncValues = (undefined && undefined.__asyncValues) || function (o) { +process.on("uncaughtException", (e) => { + core.info(`[warning] ${e.message}`); +}); const stateKey = "RUST_CACHE_KEY"; const stateHash = "RUST_CACHE_HASH"; const home = external_os_default().homedir(); diff --git a/src/common.ts b/src/common.ts index 5e7cf4c..c887853 100644 --- a/src/common.ts +++ b/src/common.ts @@ -7,6 +7,10 @@ import fs from "fs"; import os from "os"; import path from "path"; +process.on("uncaughtException", (e) => { + core.info(`[warning] ${e.message}`); +}); + export const stateKey = "RUST_CACHE_KEY"; const stateHash = "RUST_CACHE_HASH";