Skip to content

Commit bf2dc82

Browse files
authored
chore: update to use Node 18 (#400)
1 parent 488e91b commit bf2dc82

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/ci-action.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
node-version: [16.x]
12+
node-version: [18.x]
1313
steps:
1414
- uses: actions/checkout@v2
1515
- name: Use Node.js ${{ matrix.node-version }}
@@ -22,4 +22,4 @@ jobs:
2222
uses: coverallsapp/github-action@master
2323
with:
2424
github-token: ${{ secrets.github_token }}
25-
flag-name: run-${{ matrix.node-version }}
25+
flag-name: run-${{ matrix.node-version }}

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
"pretest": "eslint --ignore-path .gitignore .",
99
"test": "nyc --reporter=lcov mocha",
1010
"release": "standard-version -a",
11-
"openshift": "nodeshift --dockerImage=registry.access.redhat.com/ubi8/nodejs-16",
12-
"openshift:enable:trace": "nodeshift --deploy.env NODE_OPTIONS='--require ./tracing.js' --dockerImage=registry.access.redhat.com/ubi8/nodejs-16",
11+
"openshift": "nodeshift --dockerImage=registry.access.redhat.com/ubi8/nodejs-18",
12+
"openshift:enable:trace": "nodeshift --deploy.env NODE_OPTIONS='--require ./tracing.js' --dockerImage=registry.access.redhat.com/ubi8/nodejs-18",
1313
"start": "node .",
1414
"dev": "node . | npx pino-pretty",
1515
"dev:debug": "DEBUG=* node . "

0 commit comments

Comments
 (0)