From 1b7549ea435bfcf6c0c00aea2e891e1358ba2b42 Mon Sep 17 00:00:00 2001 From: Matthias Unterrainer Date: Sat, 17 Jan 2026 16:39:09 +0100 Subject: [PATCH] update pipeline --- .gitea/workflows/build.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 59fd9da..75c0686 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -11,11 +11,10 @@ jobs: - name: Checkout code uses: actions/checkout@v4 - - name: Set up Node.js - uses: actions/setup-node@v4 + - name: Setup node v.20 + uses: actions/setup-node@v6 with: - node-version: '20' - cache: 'npm' + node-version: '>=20.0.0' - name: Install dependencies run: npm ci