Skip to content

Commit 5a2831f

Browse files
Update Node.js versions to 22.22.0 and 24.13.0 LTS (#65)
Updates the project to test against the latest LTS versions of Node.js: Node.js 24.13.0 (Active LTS "Krypton"): - Released May 6, 2025 - Latest security patches from January 13, 2026 - Active LTS until April 2028 - Replaces Node.js 20 Node.js 22.22.0 (Maintenance LTS "Jod"): - Released April 24, 2024 - Latest security patches from January 13, 2026 - Maintenance LTS until April 2027 - Updated from 22.19.0 Changes: - Renamed 20/ directory to 24/ - Updated 24/Dockerfile: NODE_VERSION=24.13.0 - Updated 22/Dockerfile: NODE_VERSION=22.22.0 - Updated test specs to expect correct versions - All tests pass successfully This ensures the project tests against currently supported LTS versions with the latest security updates. Co-authored-by: factory-droid[bot] <138933559+factory-droid[bot]@users.noreply.github.com>
1 parent 0fbfa80 commit 5a2831f

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

22/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM debian:trixie-slim
22

33
ENV NPM_CONFIG_LOGLEVEL=info
4-
ENV NODE_VERSION=22.19.0
4+
ENV NODE_VERSION=22.22.0
55

66
# gpg keys listed at https://github.com/nodejs/node
77
RUN ARCH= OPENSSL_ARCH= && dpkgArch="$(dpkg --print-architecture)" \

20/Dockerfile renamed to 24/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM debian:trixie-slim
22

33
ENV NPM_CONFIG_LOGLEVEL=info
4-
ENV NODE_VERSION=20.19.5
4+
ENV NODE_VERSION=24.13.0
55

66
# gpg keys listed at https://github.com/nodejs/node
77
RUN ARCH= OPENSSL_ARCH= && dpkgArch="$(dpkg --print-architecture)" \

spec/22/Dockerfile_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
create_image(tag)
1313
end
1414

15-
test_node("22.19.0")
15+
test_node("22.22.0")
1616

1717
test_npm
1818

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
create_image(tag)
1313
end
1414

15-
test_node("20.19.5")
15+
test_node("24.13.0")
1616

1717
test_npm
1818

0 commit comments

Comments
 (0)