Skip to content

Commit 3cca532

Browse files
committed
Drop support for Node before v20 & update CI step versions
1 parent 1e897a3 commit 3cca532

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ jobs:
77

88
strategy:
99
matrix:
10-
node-version: [12.x, 14.x, 16.x, 18.x, 20.x, v20.8.0, '*']
10+
node-version: [20.x, 22.x, '*']
1111

1212
steps:
13-
- uses: actions/checkout@v3
13+
- uses: actions/checkout@v4
1414

15-
- uses: actions/setup-node@v3
15+
- uses: actions/setup-node@v4
1616
with:
1717
node-version: ${{ matrix.node-version }}
1818
check-latest: true

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Forked from the original [`httpolyglot`](https://github.com/mscdex/httpolyglot)
1616
Requirements
1717
============
1818

19-
* [node.js](http://nodejs.org/) -- v12.0.0 or newer
19+
* [node.js](http://nodejs.org/) -- v20 or newer
2020

2121

2222
Install

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"test": "mocha -r ts-node/register 'test/**/*.spec.ts'"
1818
},
1919
"engines": {
20-
"node": ">=12.0.0"
20+
"node": ">=20.0.0"
2121
},
2222
"keywords": [
2323
"http",

0 commit comments

Comments
 (0)