From 61e00b6fd13c4f9e6df2db92f7c54005ef8aa256 Mon Sep 17 00:00:00 2001 From: Arne Weiss Date: Mon, 1 Jun 2026 07:46:17 +0200 Subject: [PATCH] Fix CI: use node:20-alpine so JS actions have Node.js available --- .gitea/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index ddc1836..1f74b28 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -8,13 +8,13 @@ jobs: build: runs-on: ubuntu-latest container: - image: php:8.2-cli-alpine + image: node:20-alpine steps: - uses: actions/checkout@v4 - - name: Install zip - run: apk add --no-cache zip + - name: Install PHP and zip + run: apk add --no-cache php82 zip - name: PHP syntax check run: |