Skip to content

Commit

Permalink
Drop support to node < 16
Browse files Browse the repository at this point in the history
Change-type: major
  • Loading branch information
otaviojacobi committed Aug 8, 2023
1 parent dde3a13 commit 9e7970a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/actions/test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ inputs:
runs:
using: "composite"
steps:
- name: Setup Node.js 14
- name: Setup Node.js 16
if: ${{ env.os_value == 'ubuntu-20.04' }}
uses: actions/setup-node@v3
with:
node-version: 14
node-version: 16

- name: Setup Node.js lts
if: ${{ env.os_value != 'ubuntu-20.04' }}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ $ npm install --save balena-sdk

## Platforms

We currently support NodeJS (14+) and the browser.
We currently support NodeJS (16+) and the browser.

The following features are node-only:
- OS image streaming download (`balena.models.os.download`),
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
"author": "Juan Cruz Viotti <[email protected]>",
"license": "Apache-2.0",
"engines": {
"node": ">=14.0"
"node": ">=16.0"
},
"devDependencies": {
"@balena/lint": "^6.1.1",
Expand Down Expand Up @@ -114,7 +114,7 @@
"dependencies": {
"@balena/es-version": "^1.0.0",
"@types/json-schema": "^7.0.9",
"@types/node": "^14.0.0",
"@types/node": "^16.0.0",
"abortcontroller-polyfill": "^1.7.1",
"balena-auth": "^5.0.0",
"balena-errors": "^4.8.0",
Expand Down

0 comments on commit 9e7970a

Please sign in to comment.