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/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:
if: steps.guard.outputs.ok == 'true'
uses: actions/setup-node@v7
with:
node-version: 20
node-version: 24
cache: 'npm'

- name: Install dependencies
Expand Down
25 changes: 15 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v7
with:
node-version: 20
node-version: 24
cache: 'npm'

- name: Install dependencies
Expand Down Expand Up @@ -260,7 +260,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v7
with:
node-version: 20
node-version: 24
cache: 'npm'

- name: Install dependencies
Expand Down Expand Up @@ -347,7 +347,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v7
with:
node-version: 20
node-version: 24
cache: 'npm'

- name: Dependency audit
Expand All @@ -368,14 +368,19 @@ jobs:
# weakens it. (js-yaml above was dev-only; it was patched anyway because
# the range already allowed it.)
#
# Tied to `node-version: 20` (npm 10) above, and that coupling is load-
# bearing. On npm 11, `npm audit --audit-level=critical` was observed to
# exit 1 against a tree whose own --json output reported
# {moderate:2, high:1, critical:0} — i.e. the level stops gating the exit
# code. Bump this runner to node 22 and the line below silently becomes
# "block on ANY advisory, including low", which will wedge every merge on
# something unfixable and get this gate weakened rather than debugged.
# Tied to the `node-version` (npm major) above, and that coupling is
# load-bearing. On npm 11, `npm audit --audit-level=critical` was
# observed to exit 1 against a tree whose own --json output reported
# {moderate:2, high:1, critical:0} — i.e. the level stops gating the
# exit code: the line below silently becomes "block on ANY advisory,
# including low", which will wedge every merge on something unfixable
# and get this gate weakened rather than debugged.
# If you bump Node here, re-check this step's exit code first.
# Re-checked 2026-08-31 for the 20->24 bump (npm 11.x): the tree is
# clean at every level (npm audit --omit=dev --json -> total 0), so
# the command below exits 0. The npm 11 caveat still stands the day
# an advisory lands: low/moderate will block too — fix or override
# the advisory per the ladder below; do not lower the level.
#
# WHEN THIS BLOCKS YOU and no patched version exists upstream, do NOT
# lower the level — that silently re-opens the whole class. In order of
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e-auth.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Use Node 20
uses: actions/setup-node@v7
with:
node-version: 20
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 @@
20
24
Loading