Skip to content

Commit

Permalink
Merge pull request #312 from murat-dogan/drop-node-v16-support
Browse files Browse the repository at this point in the history
Drop node v16 support
  • Loading branch information
murat-dogan authored Dec 1, 2024
2 parents dd975bc + e09741f commit 14e766f
Show file tree
Hide file tree
Showing 15 changed files with 325 additions and 1,206 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-20.04
strategy:
matrix:
node-version: [16]
node-version: [18]
arch: [amd64, arm64, arm]
platform: [debian, alpine]
include:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-mac-m1.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: macos-13
strategy:
matrix:
node-version: [16.x]
node-version: [18]

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-mac-x64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: macos-13
strategy:
matrix:
node-version: [16.x]
node-version: [18]

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: windows-2019
strategy:
matrix:
node-version: [16.x]
node-version: [18]

steps:
- uses: actions/checkout@v4
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '16.x'
node-version: '18'
- run: npm ci
- run: npm run lint
- run: npm run test-types
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.15)
cmake_policy(SET CMP0091 NEW)
cmake_policy(SET CMP0042 NEW)

project(node_datachannel VERSION 0.22.0)
project(node_datachannel VERSION 0.23.0)

# -Dnapi_build_version=8
add_definitions(-DNAPI_VERSION=8)
Expand Down
2 changes: 1 addition & 1 deletion build-containers/Dockerfile.alpine
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG version=3.16
ARG node_version=16
ARG node_version=18
FROM node:${node_version}-alpine${version}
RUN apk add build-base openssl-libs-static openssl-dev

Expand Down
2 changes: 1 addition & 1 deletion build-containers/Dockerfile.debian
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG version=bullseye
ARG node_version=16
ARG node_version=18
FROM node:${node_version}-${version}
RUN apt update
RUN apt install -y build-essential libssl-dev
Expand Down
Loading

0 comments on commit 14e766f

Please sign in to comment.