diff --git a/src/action.ts b/src/action.ts index 2400215..2f655a2 100644 --- a/src/action.ts +++ b/src/action.ts @@ -88,8 +88,7 @@ export default async (options: Input): Promise => { if (!cacheHit) { 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), 5); - console.log("Downloaded Bun revision: " + revision); + revision = await retry(async () => await downloadBun(url, bunPath), 3); } if (!revision) {