From 6caacad453579f7b53d90b2e3ea148091ecab1e7 Mon Sep 17 00:00:00 2001 From: Brendan Kenny Date: Thu, 16 Sep 2021 14:42:14 -0500 Subject: [PATCH] tests: restore use of latest node 16 in CI (#13079) --- .github/workflows/unit.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/unit.yml b/.github/workflows/unit.yml index 3fead5bb085e..5d8790403a9f 100644 --- a/.github/workflows/unit.yml +++ b/.github/workflows/unit.yml @@ -10,11 +10,11 @@ jobs: unit: strategy: matrix: - node: ['12', '14', '16.8'] + node: ['12', '14', '16'] runs-on: ubuntu-latest name: node ${{ matrix.node }} env: - LATEST_NODE: '16.8' + LATEST_NODE: '16' steps: - name: git clone