From 3dc673c8516c74640bed330647332160f5377001 Mon Sep 17 00:00:00 2001 From: Lucas Holmquist Date: Wed, 22 Feb 2023 10:28:19 -0500 Subject: [PATCH] chore: update to use Node 18 (#256) --- .github/workflows/ci-action.yml | 4 ++-- package.json | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci-action.yml b/.github/workflows/ci-action.yml index 9fb71ee..a51e01e 100644 --- a/.github/workflows/ci-action.yml +++ b/.github/workflows/ci-action.yml @@ -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 }} @@ -22,4 +22,4 @@ jobs: uses: coverallsapp/github-action@master with: github-token: ${{ secrets.github_token }} - flag-name: run-${{ matrix.node-version }} \ No newline at end of file + flag-name: run-${{ matrix.node-version }} diff --git a/package.json b/package.json index 7fba5a4..ddcfc5a 100644 --- a/package.json +++ b/package.json @@ -8,8 +8,8 @@ "pretest": "eslint --ignore-path .gitignore .", "test": "nyc --reporter=lcov mocha", "release": "standard-version -a", - "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 .", "dev": "NODE_CONFIGMAP_PATH=./app-config.yml node . | npx pino-pretty", "dev:debug": "DEBUG=* node . "