diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 925f015..5beb3bd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,13 +13,13 @@ jobs: strategy: matrix: - node-version: [ '12', '14', '16' ] + node-version: [ '18', '20', '22' ] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v2 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} check-latest: true @@ -33,6 +33,6 @@ jobs: run: npm run report-coveralls - name: Upload coverage report to coveralls.io - uses: coverallsapp/github-action@v1.1.2 + uses: coverallsapp/github-action@v2 with: github-token: ${{ secrets.GITHUB_TOKEN }}