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