Skip to content

Commit 9418ea7

Browse files
committed
fix
1 parent 090f970 commit 9418ea7

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/action.ts

+3
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ export default async (options: Input): Promise<Output> => {
8989
info(`Downloading a new version of Bun: ${url}`);
9090
// TODO: remove this, temporary fix for https://github.com/oven-sh/setup-bun/issues/73
9191
revision = await retry(async () => await downloadBun(url, bunPath), 3);
92+
console.log("Downloaded Bun revision: " + revision);
9293
}
9394

9495
if (!revision) {
@@ -106,7 +107,9 @@ export default async (options: Input): Promise<Output> => {
106107
url,
107108
};
108109

110+
console.log("Saving cache state: " + JSON.stringify(cacheState));
109111
saveState("cache", JSON.stringify(cacheState));
112+
console.log("Saved cache state: " + JSON.stringify(cacheState));
110113

111114
return {
112115
version,

0 commit comments

Comments
 (0)