From 46851797e413982e02b325a3a64a6c7cff45e788 Mon Sep 17 00:00:00 2001 From: Erik Hughes Date: Wed, 16 Mar 2022 10:13:58 -0600 Subject: [PATCH] ci: updated node versions --- .github/workflows/cd.yml | 6 +++--- .github/workflows/ci.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index e183d1f..0a69ead 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -8,7 +8,7 @@ on: jobs: delivery: - name: Node 14.x + name: Node 16.x runs-on: ubuntu-latest steps: @@ -22,10 +22,10 @@ jobs: git config --global user.name "GitHub Action" git config --global user.email "action@github.com" - - name: Set up Node.js version 14.x + - name: Set up Node.js version 16.x uses: actions/setup-node@v3 with: - node-version: 14.x + node-version: 16.x registry-url: https://npm.pkg.github.com scope: trutoo diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index de8ba23..1d50239 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,7 @@ jobs: strategy: matrix: - node: [12.x, 13.x, 14.x] + node: [14.x, 16.x, 17.x] steps: - name: Check out source code