From d0326655704cbcc49816cd14f6610ae3eb28da1a Mon Sep 17 00:00:00 2001 From: CD Cabrera Date: Mon, 22 Apr 2024 01:32:14 -0400 Subject: [PATCH] build: migrate checks to nodejs 20 (#353) --- .github/workflows/commit_lint.yml | 2 +- .github/workflows/coverage.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/commit_lint.yml b/.github/workflows/commit_lint.yml index f770a9e..7be61ce 100644 --- a/.github/workflows/commit_lint.yml +++ b/.github/workflows/commit_lint.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [18.x] + node-version: [20.x] steps: - uses: actions/checkout@v4 with: diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 64280f2..7c6f4a0 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -25,7 +25,7 @@ jobs: strategy: matrix: # Coverage node version - node-version: [ 18.x ] + node-version: [ 20.x ] steps: - uses: actions/checkout@v4 - uses: actions/configure-pages@v5