From 19bdc143c11fe54811a2460532c8571b5971870c Mon Sep 17 00:00:00 2001 From: Minimata Date: Tue, 27 Jan 2026 18:44:03 +0100 Subject: [PATCH] trying to fix syntax error in checkout action --- .gitea/workflows/main.yaml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/main.yaml b/.gitea/workflows/main.yaml index 579d60d8..933915ca 100644 --- a/.gitea/workflows/main.yaml +++ b/.gitea/workflows/main.yaml @@ -90,10 +90,13 @@ jobs: image: barichello/godot-ci:mono-4.6 steps: - - name: Install node, curl and zip + - name: Install curl and zip run: | apt update && apt -y install curl zip nodejs - + - name: Setup node + uses: actions/setup-node@v6 + with: + node-version: 24 - name: Checkout uses: actions/checkout@v6 with: