From d870694e109595af8c2b5afe1e25471958e3345d Mon Sep 17 00:00:00 2001 From: Erich Blume Date: Tue, 3 Feb 2026 09:19:58 -0800 Subject: [PATCH] Upgrade forgejo-runner to Node.js 24.x LTS Quartz now requires Node.js >= 22. Co-Authored-By: Claude Opus 4.5 --- containers/forgejo-runner/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/containers/forgejo-runner/Dockerfile b/containers/forgejo-runner/Dockerfile index f5f350b..082ce96 100644 --- a/containers/forgejo-runner/Dockerfile +++ b/containers/forgejo-runner/Dockerfile @@ -23,8 +23,8 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ xz-utils \ && rm -rf /var/lib/apt/lists/* -# Install Node.js 20.x (required for actions/checkout@v4 and other GitHub Actions) -RUN curl -fsSL https://deb.nodesource.com/setup_20.x | bash - \ +# Install Node.js 24.x LTS (required for actions/checkout@v4 and Quartz builds) +RUN curl -fsSL https://deb.nodesource.com/setup_24.x | bash - \ && apt-get install -y --no-install-recommends nodejs \ && rm -rf /var/lib/apt/lists/*