From 27da3459caf1ec8bb26ddf57fe9cb7255d50866e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jozef=20Steinh=C3=BCbl?= Date: Wed, 3 Apr 2024 13:59:30 +0200 Subject: [PATCH] refactor: remove unnecesary loging, decrease retries --- src/action.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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) {