From 9418ea79b4e2c9d02463e5cbcf70bb4d45cb641f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jozef=20Steinh=C3=BCbl?= Date: Tue, 2 Apr 2024 11:50:13 +0200 Subject: [PATCH] fix --- src/action.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/action.ts b/src/action.ts index 2f655a2..f01729e 100644 --- a/src/action.ts +++ b/src/action.ts @@ -89,6 +89,7 @@ export default async (options: Input): Promise => { info(`Downloading a new version of Bun: ${url}`); // TODO: remove this, temporary fix for https://github.com/oven-sh/setup-bun/issues/73 revision = await retry(async () => await downloadBun(url, bunPath), 3); + console.log("Downloaded Bun revision: " + revision); } if (!revision) { @@ -106,7 +107,9 @@ export default async (options: Input): Promise => { url, }; + console.log("Saving cache state: " + JSON.stringify(cacheState)); saveState("cache", JSON.stringify(cacheState)); + console.log("Saved cache state: " + JSON.stringify(cacheState)); return { version,