From fc29a7db53e3ed560240e60397007d702edad881 Mon Sep 17 00:00:00 2001 From: Story Crater Bot <19826264+Riotpiaole@users.noreply.github.com> Date: Sat, 22 Aug 2026 00:45:39 -0700 Subject: [PATCH] fix(ci): install node in golang container for actions/checkout --- .gitea/workflows/ci.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index f5a51e2..205c48a 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -15,6 +15,9 @@ jobs: GOFLAGS: -mod=readonly GITHUB_TOKEN: ${{ secrets.REGISTRY_PAT }} steps: + - name: install node (required by JS-based actions) + run: apk add --no-cache nodejs git + - uses: actions/checkout@v4 - name: Download dependencies