From 14bff9bec2c10b854ee1bad2dbeebb96fce3d6e0 Mon Sep 17 00:00:00 2001 From: Zachary Belford Date: Tue, 4 Oct 2022 23:21:42 -0700 Subject: [PATCH] fix: gh action for linting is broken --- .github/workflows/lint.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index e0933e6..d5059c9 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -7,10 +7,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - - name: Use Node.js 14.15.1 + - name: Use Node.js 16.17.0 uses: actions/setup-node@v1 with: - node-version: 14.15.1 + node-version: 16.17.0 - name: npm install run: npm install - name: lint