From 90b2ce32858a5f14a57c67ef86ab1d86d69da573 Mon Sep 17 00:00:00 2001 From: Errilaz Date: Fri, 1 May 2026 16:05:28 +0200 Subject: [PATCH] fix actions --- actions/checks/action.yml | 3 ++- actions/release/action.yml | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) 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