From c38683bf536ebb599eba5a282df94544568991d1 Mon Sep 17 00:00:00 2001 From: mahseiah_ai Date: Tue, 5 May 2026 15:54:36 -0400 Subject: [PATCH] ci: replace oven-sh/setup-bun with curl install for Gitea Actions compatibility The action is a GitHub Marketplace action that doesn't exist on self-hosted Gitea instances. Replace it with the standard curl-based Bun installation method and add ~/.bun/bin to GITHUB_PATH. --- .gitea/workflows/validate.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/validate.yml b/.gitea/workflows/validate.yml index 8d3a642..83a8136 100644 --- a/.gitea/workflows/validate.yml +++ b/.gitea/workflows/validate.yml @@ -14,9 +14,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 + - name: Add Bun to PATH + run: echo "$HOME/.bun/bin" >> $GITHUB_PATH - name: Install dependencies run: bun install