From 6c61d0abb9852423e6c172b8eba0ccec03ffee86 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jozef=20Steinh=C3=BCbl?= Date: Wed, 8 May 2024 10:23:51 +0200 Subject: [PATCH] docs: add comment for easier understanding --- src/action.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/action.ts b/src/action.ts index da8a580..bfb1d32 100644 --- a/src/action.ts +++ b/src/action.ts @@ -119,6 +119,7 @@ async function downloadBun( url: string, bunPath: string ): Promise { + // Workaround for https://github.com/oven-sh/setup-bun/issues/79 and https://github.com/actions/toolkit/issues/1179 const zipPath = addExtension(await downloadTool(url), ".zip"); const extractedZipPath = await extractZip(zipPath); const extractedBunPath = await extractBun(extractedZipPath);