From 968cc09c985ea293ffa9ef7da7f2755d1802c8c8 Mon Sep 17 00:00:00 2001 From: syntaxbullet Date: Wed, 18 Mar 2026 13:33:55 +0100 Subject: [PATCH] fix: replace setup-bun action with curl install for Gitea runner compatibility oven-sh/setup-bun@v2 now requires node24 runtime, which Gitea Act runner v0.2.11 does not support. Using direct curl install instead. Co-Authored-By: Claude Opus 4.6 (1M context) --- .github/workflows/deploy.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 762802b..3e560b9 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -38,9 +38,9 @@ jobs: uses: actions/checkout@v4 - name: Setup Bun - uses: oven-sh/setup-bun@v2 - with: - bun-version: latest + run: | + curl -fsSL https://bun.sh/install | bash + echo "$HOME/.bun/bin" >> $GITHUB_PATH - name: Install Dependencies run: bun install --frozen-lockfile