From a702800dea55e1d7e96e50f5fcb72f79cf36409b Mon Sep 17 00:00:00 2001 From: Jorijn van der Graaf Date: Sat, 8 Aug 2026 16:21:47 +0200 Subject: [PATCH] ci: provision nodejs+git before Node actions run Co-Authored-By: Claude Fable 5 --- .forgejo/workflows/build.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.forgejo/workflows/build.yml b/.forgejo/workflows/build.yml index 56fca0d..ed13672 100644 --- a/.forgejo/workflows/build.yml +++ b/.forgejo/workflows/build.yml @@ -22,6 +22,10 @@ jobs: runs-on: pmos timeout-minutes: 420 steps: + # actions/checkout & friends are Node actions; bare alpine has no node + - name: Provision job container + run: apk add -q nodejs git + - name: Checkout uses: actions/checkout@v4 with: