Skip to content

Commit

Permalink
chore: update to use Node 18 (#190)
Browse files Browse the repository at this point in the history
* chore: update to use Node 18
  • Loading branch information
lholmquist authored Feb 22, 2023
1 parent 5a00a45 commit 245ff73
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
node-version: [18.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
Expand Down
4 changes: 2 additions & 2 deletions cute-name-service/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
"pretest": "eslint --ignore-path ../.gitignore .",
"test": "mocha",
"lint:fix": "eslint . --fix",
"openshift": "nodeshift --dockerImage=registry.access.redhat.com/ubi8/nodejs-16",
"openshift:enable:trace": "nodeshift --deploy.env NODE_OPTIONS='--require ./tracing.js' --dockerImage=registry.access.redhat.com/ubi8/nodejs-16",
"openshift": "nodeshift --dockerImage=registry.access.redhat.com/ubi8/nodejs-18",
"openshift:enable:trace": "nodeshift --deploy.env NODE_OPTIONS='--require ./tracing.js' --dockerImage=registry.access.redhat.com/ubi8/nodejs-18",
"start": "node ."
},
"main": "./bin/www",
Expand Down
4 changes: 2 additions & 2 deletions greeting-service/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
"test": "mocha",
"lint:fix": "eslint . --fix",
"start": "node .",
"openshift": "nodeshift --dockerImage=registry.access.redhat.com/ubi8/nodejs-16",
"openshift:enable:trace": "nodeshift --deploy.env NODE_OPTIONS='--require ./tracing.js' --dockerImage=registry.access.redhat.com/ubi8/nodejs-16"
"openshift": "nodeshift --dockerImage=registry.access.redhat.com/ubi8/nodejs-18",
"openshift:enable:trace": "nodeshift --deploy.env NODE_OPTIONS='--require ./tracing.js' --dockerImage=registry.access.redhat.com/ubi8/nodejs-18"
},
"main": "./bin/www",
"repository": {
Expand Down

0 comments on commit 245ff73

Please sign in to comment.