From 9c10de520db527c801783b4bbf8e6dcb331a6364 Mon Sep 17 00:00:00 2001 From: Valentin Haudiquet Date: Wed, 21 Jan 2026 14:27:22 +0100 Subject: [PATCH] ci: tryfix upgrade to newer node --- .gitea/workflows/pipeline.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/pipeline.yaml b/.gitea/workflows/pipeline.yaml index e3e50be..9c1dc4c 100644 --- a/.gitea/workflows/pipeline.yaml +++ b/.gitea/workflows/pipeline.yaml @@ -10,13 +10,15 @@ permissions: jobs: lint-and-format: runs-on: ubuntu-latest + container: + image: ubuntu:25.10 steps: - name: Checkout repository uses: https://gitea.com/actions/checkout@v4 - name: Install node and npm run: apt-get update && apt-get install -y nodejs npm - + - name: Install dependencies for frontend working-directory: ./frontend run: npm ci