Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:

- uses: actions/setup-node@v7
with:
node-version: 22
node-version: 24
cache: npm

- name: Determine version
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-verification.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:

- uses: actions/setup-node@v7
with:
node-version: 22
node-version: 24
cache: npm

- name: Install dependencies
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

- uses: actions/setup-node@v7
with:
node-version: 22
node-version: 24
cache: npm

- name: Install dependencies
Expand Down Expand Up @@ -101,7 +101,7 @@ jobs:

- uses: actions/setup-node@v7
with:
node-version: 22
node-version: 24
cache: npm

- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
22
24
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:22
FROM node:24

WORKDIR /app

Expand Down
6 changes: 3 additions & 3 deletions deploy/render-service/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# The headless render service: diagram figures for documents, drawn by the site's
# own renderer.
#
# Built from node:22 plus Chromium rather than from a Playwright image. The
# Built from node:24 plus Chromium rather than from a Playwright image. The
# Playwright images carry three browsers and land around 3 GB; this needs one
# browser, and node:22 is already on the box as the app image's base, so its
# browser, and node:24 is already on the box as the app image's base, so its
# layers are shared rather than downloaded again.
FROM node:22
FROM node:24

# Where the browser goes.
#
Expand Down
4 changes: 2 additions & 2 deletions deploy/render-service/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ shields a namespace's init from its own signals; and signalling the process from
the host needs root. Take the policy on docker's terms, or confirm it the next
time the box reboots.

The image is `node:22` plus Chromium, not a Playwright image. The Playwright
images carry three browsers and land around 3 GB; this needs one, and node:22 is
The image is `node:24` plus Chromium, not a Playwright image. The Playwright
images carry three browsers and land around 3 GB; this needs one, and node:24 is
already here as the app image's base, so the layers are shared. It installs four
packages rather than the site's whole tree, and reads their versions out of the
root `package.json` at build time rather than restating them: dependabot only
Expand Down
Loading