From 13a8a6e16fc1d9593d0a68baa74dcda1c1385d55 Mon Sep 17 00:00:00 2001 From: Tom Longhurst <30480171+thomhurst@users.noreply.github.com> Date: Fri, 27 Mar 2026 18:14:29 +0000 Subject: [PATCH] fix: relax docs site Node.js engine constraint to >=24 Renovate PR #5264 bumped the engines.node constraint to >=24.14.1, but GitHub Actions runners only have 24.14.0 available via setup-node, causing the docs deploy CI job to fail. --- docs/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/package.json b/docs/package.json index 4beaa767b4..92412e441f 100644 --- a/docs/package.json +++ b/docs/package.json @@ -44,6 +44,6 @@ ] }, "engines": { - "node": ">=24.14.1" + "node": ">=24" } }