diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index f9790aea7..114392830 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -6,9 +6,9 @@ jobs: eslint-check: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - uses: actions/setup-node@v1 - - name: npm-install - run: npm install - - name: npm-run-lint - run: npm run lint + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: 14 + - run: npm install + - run: npm run lint