Skip to content

Commit

Permalink
perf(#600): drop support for Node versions < 18 (#619)
Browse files Browse the repository at this point in the history
BREAKING CHANGE: Dropping support for NodeJS versions < 18
  • Loading branch information
sugat009 authored Jul 1, 2024
1 parent 1443102 commit 496d074
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ jobs:

strategy:
matrix:
node-version: [ 8.x, 10.x, 12.x, 14.x, 16.x, 18.x, 20.x ]
node-version: [ 18.x, 20.x ]
fail-fast: false

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install pyxform
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish_docker_image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Check out the repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Log in to Docker Hub
uses: docker/login-action@v2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Setup Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ CHT Conf is a command-line interface tool to manage and configure your apps buil

# Requirements

* nodejs 8 or later
* python 2.7
* nodejs 18 or later
* python 3
* or Docker

# Installation
Expand Down Expand Up @@ -349,7 +349,7 @@ Builds brought to you courtesy of GitHub actions.

# Copyright

Copyright 2013-2023 Medic Mobile, Inc. <hello@medic.org>
Copyright 2013-2024 Medic Mobile, Inc. <hello@medic.org>

# License

Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "Configure CHT deployments",
"main": "./src/lib/main.js",
"engines": {
"node": ">=8.10.0"
"node": ">=18.0.0"
},
"scripts": {
"clean": "rm -rf ./build/",
Expand Down

0 comments on commit 496d074

Please sign in to comment.