Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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/docker/Dockerfile.glibc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ARG UBUNTU_VERSION=bionic
FROM ubuntu:${UBUNTU_VERSION} AS build

ARG NODE_VERSION=16.20.1
ARG NODE_VERSION=20.19.3
# Possible values: s390x, arm64, x64
ARG NODE_ARCH
ADD https://nodejs.org/dist/v${NODE_VERSION}/node-v${NODE_VERSION}-linux-${NODE_ARCH}.tar.gz /
Expand Down
2 changes: 1 addition & 1 deletion .github/docker/Dockerfile.musl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

ARG PLATFORM=arm64
ARG NODE_VERSION=16.20.1
ARG NODE_VERSION=20.19.3

FROM ${PLATFORM}/node:${NODE_VERSION}-alpine AS build

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

- uses: actions/setup-node@v4
with:
node-version: 16.20.1
node-version: 20.x
cache: "npm"
registry-url: "https://registry.npmjs.org"

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
matrix:
os: [macos-latest, windows-2022, macos-13]
node: [16.20.1, 18.x, 20.x, 22.x]
node: [20.x, 22.x, 24.x]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -41,7 +41,7 @@ jobs:
strategy:
matrix:
linux_arch: [s390x, arm64, amd64]
node: [16.x, 18.x, 20.x, 22.x]
node: [20.x, 22.x, 24.x]
fail-fast: false
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
strategy:
matrix:
linux_arch: [amd64, arm64]
node: [16.20.1, 18.x, 20.x, 22.x]
node: [20.x, 22.x, 24.x]
fail-fast: false
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"prettier": "^3.6.2"
},
"engines": {
"node": ">= 16.20.1"
"node": ">= 20.0.0"
},
"scripts": {
"install": "prebuild-install --runtime napi || npm run clean-install",
Expand Down