From 7db868e67ce10dea3c8b71b76b7ae47f228b5c5d Mon Sep 17 00:00:00 2001 From: Floyd Pink Date: Mon, 16 Jan 2023 11:23:43 -0500 Subject: [PATCH] ci: add/deprecate nodejs versions --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a246f9c..fda79cc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,12 +12,12 @@ jobs: name: Continuous Integration/Continuous Deployment strategy: matrix: - node-version: [12.x, 14.x, 15.x, 16.x] + node-version: [14.x, 15.x, 16.x, 18.x] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Setup Node - uses: actions/setup-node@v2 + uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} @@ -25,7 +25,7 @@ jobs: run: npm install -g bower@1.8.4 grunt-cli istanbul npm - name: Cache dependencies - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/.npm key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}