From b408351c9d9f75a29502d3d20565eb672dd9c666 Mon Sep 17 00:00:00 2001 From: Thomas Allmer Date: Mon, 20 Jun 2022 13:21:22 +0200 Subject: [PATCH] chore: verify using node 16 --- .github/workflows/verify.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml index 67c1cef6b..2af20e4f2 100644 --- a/.github/workflows/verify.yml +++ b/.github/workflows/verify.yml @@ -12,10 +12,10 @@ jobs: - name: Sanity check run: node ./scripts/yarn-lock-scan.js - - name: Setup Node 14.x + - name: Setup Node 16.x uses: actions/setup-node@v1 with: - node-version: 14.x + node-version: 16.x - name: Get yarn cache directory id: yarn-cache-dir @@ -44,10 +44,10 @@ jobs: steps: - uses: actions/checkout@v2 - - name: Setup Node 14.x + - name: Setup Node 16.x uses: actions/setup-node@v1 with: - node-version: 14.x + node-version: 16.x - name: Get yarn cache directory id: yarn-cache-dir @@ -74,7 +74,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - node-version: [14.x] + node-version: [16.x] os: [ubuntu-latest] steps: - uses: actions/checkout@v2