v1.2.2
oven-sh/setup-bun
is the github action for setting up Bun.
This release introduces support for the bun-download-url
input, which lets you override the URL used to download the .zip file for Bun.
Here's an example:
- name: Setup Bun
uses: oven-sh/setup-bun@v1.2.2
with:
bun-version: latest
bun-download-url: "https://github.com/oven-sh/bun/releases/latest/download/bun-${{runner.os == 'macOS' && 'darwin' || runner.os}}-${{ runner.arch == 'X64' && 'x64' || 'arm64' }}.zip"