diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index cd42e004..cdc2ebf3 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 c04e25f1..ab096e9e 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 }}