From 2e24e2b66143e44291134c97bc8d90be76ed9510 Mon Sep 17 00:00:00 2001 From: kite Date: Fri, 24 Jul 2026 23:04:55 +0800 Subject: [PATCH] fix(ci): pin Pages CI container to node:24.18.0 The rolling `node:24` tag recently picked up a newer npm version whose `npm ci` rejects the existing lockfileVersion-3 lockfile. Pin to 24.18.0 (same version used by translation-sync.yml) to restore deterministic builds. --- .github/workflows/pages-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pages-ci.yml b/.github/workflows/pages-ci.yml index 7bdb6853..a2fb7d47 100644 --- a/.github/workflows/pages-ci.yml +++ b/.github/workflows/pages-ci.yml @@ -18,7 +18,7 @@ jobs: runs-on: self-hosted timeout-minutes: 15 container: - image: node:24 + image: node:24.18.0 steps: - uses: actions/checkout@v4