Skip to content

Commit

Permalink
feat!: remove Node 14 (#675)
Browse files Browse the repository at this point in the history
  • Loading branch information
lholmquist committed May 23, 2023
1 parent 8d5f1d3 commit 8ccc1fa
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/nodejs-ci-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
node-version: [16.x, 18.x, 20.x]

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Nodeshift is an opinionated command line application and programmable API that y

## Prerequisites

* Node.js - version 14.x or greater
* Node.js - version 16.x or greater

## Install

Expand Down
2 changes: 1 addition & 1 deletion lib/config/nodeshift-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const { promisify } = require('util');
const readFile = promisify(fs.readFile);
const _ = require('lodash');

const DEFAULT_DOCKER_IMAGE = 'registry.access.redhat.com/ubi8/nodejs-14';
const DEFAULT_DOCKER_IMAGE = 'registry.access.redhat.com/ubi8/nodejs-16';
const DEFAULT_DOCKER_TAG = 'latest';

async function setup (options = {}) {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"package-support.json"
],
"engines": {
"node": "^16 || ^14"
"node": "^16 || ^18 || ^20"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit 8ccc1fa

Please sign in to comment.