From f83d78ab4ed624ab4b2e2b2a44e23cfae69dd320 Mon Sep 17 00:00:00 2001 From: Julian Lechner Date: Mon, 24 Aug 2026 15:25:19 +0200 Subject: [PATCH] ci(node): pin Node.js 24.17 --- .gitea/workflows/Build-Rollout.yml | 4 ++-- .gitea/workflows/Build-Validation.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/Build-Rollout.yml b/.gitea/workflows/Build-Rollout.yml index 5512757..9d93037 100644 --- a/.gitea/workflows/Build-Rollout.yml +++ b/.gitea/workflows/Build-Rollout.yml @@ -22,10 +22,10 @@ jobs: fetch-depth: 0 fetch-tags: true - - name: Use NodeJS 24 + - name: Use Node.js 24.17.0 uses: actions/setup-node@v6 with: - node-version: '24' + node-version: '24.17.0' registry-url: 'https://registry.npmjs.org' package-manager-cache: false diff --git a/.gitea/workflows/Build-Validation.yml b/.gitea/workflows/Build-Validation.yml index 9cdfcfc..6ef62c5 100644 --- a/.gitea/workflows/Build-Validation.yml +++ b/.gitea/workflows/Build-Validation.yml @@ -15,10 +15,10 @@ jobs: - name: Checkout Repository uses: actions/checkout@v4 - - name: use NodeJS 24 + - name: Use Node.js 24.17.0 uses: actions/setup-node@v4 with: - node-version: '24' + node-version: '24.17.0' - name: Install Dependencies run: npm ci