From 7fd73364a03fc83b0c21eabf41c770e2eb6c5df5 Mon Sep 17 00:00:00 2001 From: Samuel Berthe Date: Wed, 22 Apr 2026 01:40:32 +0200 Subject: [PATCH] ci: pin Node.js to 24 for Astro 6 compatibility Astro 6 requires Node.js >=22.12.0; 'latest' was resolving to v20. --- .github/workflows/site.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/site.yml b/.github/workflows/site.yml index de77f26..383a0b9 100644 --- a/.github/workflows/site.yml +++ b/.github/workflows/site.yml @@ -25,7 +25,7 @@ jobs: with: cache: npm cache-dependency-path: site/package-lock.json - node-version: 'latest' + node-version: '24' - name: Install dependencies working-directory: site