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/*