Skip to content

Commit

Permalink
Drop support for Node.js < 18.
Browse files Browse the repository at this point in the history
  • Loading branch information
JSAssassin committed Oct 17, 2023
1 parent 69c04e0 commit ed14ed1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ jobs:
timeout-minutes: 10
strategy:
matrix:
node-version: [16.x]
node-version: [20.x]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm install
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## 10.0.0 - 2023-10-TBD

### Changed
- **BREAKING**: Drop support for Node.js < 18.
- **BREAKING**: Update peer dep `@bedrock/vue` to v6.0 that uses peer dep
`@bedrock/web@4.0`.

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,6 @@
}
},
"engines": {
"node": ">=14"
"node": ">=18"
}
}

0 comments on commit ed14ed1

Please sign in to comment.