Skip to content

Commit c6e44ff

Browse files
committed
Bump to Node 24
1 parent 811be96 commit c6e44ff

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# See here for image contents: https://github.com/microsoft/vscode-dev-containers/tree/v0.222.0/containers/javascript-node/.devcontainer/base.Dockerfile
22

33
# [Choice] Node.js version (use -bullseye variants on local arm64/Apple Silicon): 16, 14, 12, 16-bullseye, 14-bullseye, 12-bullseye, 16-buster, 14-buster, 12-buster
4-
ARG VARIANT="16"
4+
ARG VARIANT="24"
55
FROM mcr.microsoft.com/vscode/devcontainers/javascript-node:0-${VARIANT}
66

77
RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
// Update 'VARIANT' to pick a Node version: 16, 14, 12.
88
// Append -bullseye or -buster to pin to an OS version.
99
// Use -bullseye variants on local arm64/Apple Silicon.
10-
"args": { "VARIANT": "16" }
10+
"args": { "VARIANT": "24" }
1111
},
1212

1313
// Set *default* container specific settings.json values on container create.

.github/workflows/lighthouse.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010
- name: Checkout the project
1111
uses: actions/checkout@v3
1212

13-
- name: Use Node.js 16.x (LTS)
13+
- name: Use Node.js 24.x (LTS)
1414
uses: actions/setup-node@v3
1515
with:
16-
node-version: 16.x
16+
node-version: 24.x
1717
cache: 'npm'
1818
- run: npm ci
1919

.github/workflows/nodejs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ jobs:
1111
steps:
1212
- name: Checkout the project
1313
uses: actions/checkout@v3
14-
- name: Use Node.js 16.x (LTS)
14+
- name: Use Node.js 24.x (LTS)
1515
uses: actions/setup-node@v3
1616
with:
17-
node-version: 16.x
17+
node-version: 24.x
1818
cache: 'npm'
1919
- run: npm ci
2020
- name: Lint Codebase

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010
steps:
1111
- name: Checkout the project
1212
uses: actions/checkout@v3
13-
- name: Use Node.js 16.x (LTS)
13+
- name: Use Node.js 24.x (LTS)
1414
uses: actions/setup-node@v3
1515
with:
16-
node-version: 16.x
16+
node-version: 24.x
1717
registry-url: https://registry.npmjs.org/
1818
cache: npm
1919
- run: npm ci

0 commit comments

Comments
 (0)