mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-11 22:46:27 +00:00
b50e21646e
Co-authored-by: HonkingGoose <34918129+HonkingGoose@users.noreply.github.com> Co-authored-by: Rhys Arkins <rhys@arkins.net>
20 lines
770 B
Markdown
20 lines
770 B
Markdown
# How to bump Renovate to next NodeJS LTS release
|
|
|
|
## Add new NodeJS version
|
|
|
|
- Add new version via `package.json>engines>node` and `package.json>engines-next>node`
|
|
- Update the node version in the [local-development](./local-development.md) docs
|
|
- Update the node version in the Github Actions workflow files
|
|
|
|
## Deprecate old NodeJS version
|
|
|
|
- Deprecate old LTS via `package.json>engines-next>node`
|
|
- Update the node version in the [local-development](./local-development.md) docs
|
|
- Remove the old node version in the Github Actions workflow files
|
|
|
|
## Remove old NodeJS version
|
|
|
|
- Update `package.json>engines>node`
|
|
- Mark PR as `BREAKING` by:
|
|
- Adding the label `breaking` to the PR
|
|
- Putting the text `BREAKING CHANGE: <breaking cause>` in the PR content footer
|