diff --git a/actions/checks/action.yml b/actions/checks/action.yml index a709a0d..b898b6c 100644 --- a/actions/checks/action.yml +++ b/actions/checks/action.yml @@ -5,7 +5,8 @@ runs: using: composite steps: - name: Setup Bun - uses: https://github.com/oven-sh/setup-bun@v2 + shell: bash + run: curl -fsSL https://bun.sh/install | bash && echo "$HOME/.bun/bin" >> "$GITHUB_PATH" - name: Install dependencies shell: bash diff --git a/actions/release/action.yml b/actions/release/action.yml index af8c4da..ba2b717 100644 --- a/actions/release/action.yml +++ b/actions/release/action.yml @@ -16,7 +16,8 @@ runs: using: composite steps: - name: Setup Bun - uses: https://github.com/oven-sh/setup-bun@v2 + shell: bash + run: curl -fsSL https://bun.sh/install | bash && echo "$HOME/.bun/bin" >> "$GITHUB_PATH" - name: Install dependencies shell: bash