From 908ebe2beac091131a8dbb73af11b55cf424add1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Zasso?= Date: Mon, 9 May 2022 16:33:43 +0200 Subject: [PATCH] ci: update tested Node.js versions (#906) --- .github/workflows/nodejs.yml | 13 ++++++------- .github/workflows/test-module.yml | 7 +++---- 2 files changed, 9 insertions(+), 11 deletions(-) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index cd42e0047..cdc2ebf34 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -14,10 +14,10 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Use Node.js 16 - uses: actions/setup-node@v2 + uses: actions/setup-node@v3 with: node-version: 16.x @@ -36,19 +36,18 @@ jobs: - ubuntu-latest - windows-latest node-version: - - 12.x - 14.x - 16.x - - 17.x + - 18.x runs-on: ${{ matrix.os }} steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v2 + uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} @@ -59,4 +58,4 @@ jobs: run: npm run tap -- --coverage-report=lcov - name: Upload coverage report to Codecov - uses: codecov/codecov-action@v2 + uses: codecov/codecov-action@v3 diff --git a/.github/workflows/test-module.yml b/.github/workflows/test-module.yml index c04e25f14..ab096e9e0 100644 --- a/.github/workflows/test-module.yml +++ b/.github/workflows/test-module.yml @@ -36,22 +36,21 @@ jobs: - ubuntu-latest - windows-latest node-version: - - 12.x - 14.x - 16.x - - 17.x + - 18.x runs-on: ${{ matrix.os }} steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: repository: ${{ github.event.inputs.repository }} ref: ${{ github.event.inputs.ref }} - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v2 + uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }}