From 131ae597243dd0bdf2a45236536c68c4a274c8f9 Mon Sep 17 00:00:00 2001 From: Sam Brannen <104798+sbrannen@users.noreply.github.com> Date: Wed, 27 May 2026 12:09:02 +0200 Subject: [PATCH] Pin Node.js version to 24.15.0 Prior to this commit, the `antora` Gradle task silently failed to build the reference documentation, since Antora uses the latest LTS release for Node.js by default, and the latest LTS apparently does not work for us. --- build.gradle | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build.gradle b/build.gradle index e7d2bc510d4..f046871bd24 100644 --- a/build.gradle +++ b/build.gradle @@ -6,3 +6,7 @@ plugins { antora { options = [clean: true, fetch: true, stacktrace: true] } + +node { + version = '24.15.0' +}