From 80e5d012e33fc739e76665d55d55cbad2ab71840 Mon Sep 17 00:00:00 2001 From: GSRN Date: Tue, 16 Sep 2025 22:43:09 +0200 Subject: [PATCH] chore: Update caching keys in CI workflow to reflect Node.js version 20 ### Summary of Changes - Modified caching keys in the CI workflow configuration to use Node.js version `20` instead of `18`, ensuring proper cache management for dependencies. ### Expected Results - Improved efficiency in dependency caching during CI runs, aligning with the recent Node.js version upgrade. --- .gitea/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 9e5f4be..0d79324 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -222,9 +222,9 @@ jobs: ~/.npm node_modules ~/.cache/node-gyp - key: npm-${{ runner.os }}-18-${{ hashFiles('frontend/package-lock.json') }} + key: npm-${{ runner.os }}-20-${{ hashFiles('frontend/package-lock.json') }} restore-keys: | - npm-${{ runner.os }}-18- + npm-${{ runner.os }}-20- npm-${{ runner.os }}- npm- fail-on-cache-miss: false