From 5c2f33c03bf249922b0e2de6184c1ce5b9ea80e2 Mon Sep 17 00:00:00 2001 From: Josh Cummings <3627351+jzheaux@users.noreply.github.com> Date: Fri, 22 May 2026 22:17:31 -0600 Subject: [PATCH] Update NodeJS to 24.15 This commit declares a NodeJS value whereas previously, Antora would use the latest LTS version. When it updated to Node 24.16, site production stopped, possibly due to https://github.com/nodejs/node/commit/e95570c054. Either way, it is helpful to have a pinned version in order to stabilize builds, allowing us to update it in an orderly fashion like other dependencies. Closes gh-19206 --- build.gradle | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/build.gradle b/build.gradle index e7d2bc510d..353af7a9c8 100644 --- a/build.gradle +++ b/build.gradle @@ -3,6 +3,10 @@ plugins { id 'org.antora' version '1.0.0' } +node { + version = "24.15.0" +} + antora { options = [clean: true, fetch: true, stacktrace: true] }