From e549d0c235d3b8d4342efddaaf544771ebcfc4ce Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Tue, 26 May 2026 13:31:21 +0100 Subject: [PATCH] ci: avoid unconditional bun action download --- .github/actions/setup-node-env/action.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/actions/setup-node-env/action.yml b/.github/actions/setup-node-env/action.yml index 1a85be06eb4..14bcb9affa4 100644 --- a/.github/actions/setup-node-env/action.yml +++ b/.github/actions/setup-node-env/action.yml @@ -49,9 +49,10 @@ runs: - name: Setup Bun if: inputs.install-bun == 'true' - uses: oven-sh/setup-bun@v2.2.0 - with: - bun-version: "1.3.13" + shell: bash + run: | + set -euo pipefail + npm install -g bun@1.3.13 - name: Runtime versions shell: bash