Skip to content

Commit 6a8f77c

Browse files
torokati44Dinnerbone
authored andcommitted
chore: Update Node.js, LTS: 20 -> 22, Active: 22 -> 23
1 parent b11a525 commit 6a8f77c

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/release_nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ jobs:
340340
- name: Setup Node.js
341341
uses: actions/setup-node@v4
342342
with:
343-
node-version: "20"
343+
node-version: "22"
344344
registry-url: https://registry.npmjs.org
345345

346346
# wasm-bindgen-cli version must match wasm-bindgen crate version.

.github/workflows/test_extension_dockerfile.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Setup Node.js
2626
uses: actions/setup-node@v4
2727
with:
28-
node-version: "20"
28+
node-version: "22"
2929
registry-url: https://registry.npmjs.org
3030

3131
- name: Install wasm-bindgen

.github/workflows/test_web.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
strategy:
3636
fail-fast: false
3737
matrix:
38-
node_version: ["20", "22"]
38+
node_version: ["22", "23"]
3939
os: [ubuntu-24.04, windows-latest]
4040

4141
steps:
@@ -197,7 +197,7 @@ jobs:
197197
runs-on: ${{ matrix.os }}
198198
strategy:
199199
matrix:
200-
node_version: ["20", "22"]
200+
node_version: ["22", "23"]
201201
os: [ubuntu-24.04, windows-latest]
202202

203203
steps:

web/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ should work. Additionally, headless JREs should also work.
5757

5858
Follow the instructions to [install Node.js](https://nodejs.org/) on your machine.
5959

60-
We recommend using the currently active LTS 20, but we do also run tests with current Node.js 22.
60+
We recommend using the currently active LTS 22, but we do also run tests with current Node.js 23.
6161

6262
Note that npm 7 or newer is required. It should come bundled with Node.js 15 or newer, but can be upgraded with older Node.js versions using `npm install -g npm` as root/Administrator.
6363

web/docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# rm -rf web/docker/docker_builds/packages/*
33
# docker build --tag ruffle-web-docker -f web/docker/Dockerfile .
44
# docker cp $(docker create ruffle-web-docker:latest):/ruffle/web/packages web/docker/docker_builds/packages
5-
FROM node:20
5+
FROM node:22
66

77
# Installing wasm-opt from GitHub:
88
# Keep the version number in sync with the ones in the Actions workflows!

0 commit comments

Comments
 (0)