Skip to content

Commit 0edf134

Browse files
committed
chore: bump minimum Node version to 20.8.1
This bumps the minimum supported Node version to 20.8.1. Node 20 is the new LTS version and some of our dependencies already dropped supported for Node 18. Check out [our Node Support Policy](https://semantic-release.gitbook.io/semantic-release/support/node-support-policy) to understand how we handle Node versions. BREAKING CHANGE: Node 18 is not supported anymore. Users have to upgrade to Node 20.8.1 or later.
1 parent 8eb7136 commit 0edf134

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ jobs:
1313
strategy:
1414
matrix:
1515
node-version:
16-
- 18.17.0
17-
- 20.6.1
16+
- 20.8.1 # minimum supported Node version
1817
- 20
18+
- 21
1919
runs-on: ubuntu-latest
2020
steps:
2121
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"prettier": "3.1.1"
2222
},
2323
"engines": {
24-
"node": "^18.17 || >=20.6.1"
24+
"node": ">=20.8.1"
2525
},
2626
"files": [
2727
"index.js"

0 commit comments

Comments
 (0)