Skip to content

Commit 3b10b04

Browse files
authored
feat!: Removed support for Node.js 16 (#273)
1 parent de17116 commit 3b10b04

File tree

6 files changed

+148
-225
lines changed

6 files changed

+148
-225
lines changed

.github/workflows/ci-workflow.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
strategy:
3939
matrix:
4040
os: [ ubuntu-latest, windows-latest ]
41-
node: [ 16, 18, 20, 22 ]
41+
node: [ 18, 20, 22 ]
4242
arch: [ x86, x64 ]
4343
exclude:
4444
# Ubuntu does not ship x86 builds.
@@ -85,7 +85,7 @@ jobs:
8585
# strategy:
8686
# matrix:
8787
# os: [ macos-14 ]
88-
# node: [ 16, 18, 20, 22 ]
88+
# node: [ 18, 20, 22 ]
8989
# arch: [ arm64 ]
9090
# runs-on: ${{ matrix.os }}
9191
# name: "${{ matrix.os }} / Node ${{ matrix.node }} ${{ matrix.arch }}"
@@ -129,7 +129,7 @@ jobs:
129129
if: ${{ vars.NR_RUNNER != '' }}
130130
strategy:
131131
matrix:
132-
node: [ 16, 18, 20, 22 ]
132+
node: [ 18, 20, 22 ]
133133
runs-on: ${{ vars.NR_RUNNER }}
134134
name: Linux / Node ${{ matrix.node }} arm64
135135
timeout-minutes: 15

.github/workflows/create-release.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
matrix:
1414
os: [ ubuntu-latest, windows-latest ]
15-
node: [ 16, 18, 20, 22 ]
15+
node: [ 18, 20, 22 ]
1616
arch: [ x86, x64 ]
1717
exclude:
1818
# Ubuntu does not ship x86 builds.
@@ -45,7 +45,7 @@ jobs:
4545
strategy:
4646
matrix:
4747
os: [ macos-14 ]
48-
node: [ 16, 18, 20, 22 ]
48+
node: [ 18, 20, 22 ]
4949
arch: [ arm64 ]
5050
runs-on: ${{ matrix.os }}
5151
name: "${{ matrix.os }} / Node ${{ matrix.node }} ${{ matrix.arch }}"
@@ -78,7 +78,7 @@ jobs:
7878
if: ${{ vars.NR_RUNNER != '' }}
7979
strategy:
8080
matrix:
81-
node: [ 16, 18, 20, 22 ]
81+
node: [ 18, 20, 22 ]
8282
runs-on: ${{ vars.NR_RUNNER }}
8383
name: Linux / Node ${{ matrix.node }} arm64
8484
timeout-minutes: 15

0 commit comments

Comments
 (0)