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);