From 99e6c678eb8cf8f330479539ad08ab6a0d444322 Mon Sep 17 00:00:00 2001 From: TimeForANinja Date: Sun, 4 Sep 2022 00:52:09 +0200 Subject: [PATCH] fix(workflows): bump node.js versions in workflows (#1138) this shouldn't be "fix" but since i screwed up the last 2 commit names this is the best way to get the latest fixes deployed to npm.. --- .github/workflows/nodejs.yml | 2 +- .github/workflows/release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index bd4f7d0c..31bc30a4 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -8,7 +8,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - node-version: [12.x, 14.x, 16.x] + node-version: [12.x, 14.x, 16.x, 18.x] os: [ubuntu-latest] steps: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index db1ffb9e..ca2cfc78 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,7 +15,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v3 with: - node-version: 14 + node-version: 16 - name: Install dependencies run: npm ci - name: Release