From 44b6e7053ded3b82a363edf374877dec4883af46 Mon Sep 17 00:00:00 2001 From: Philip Molares Date: Tue, 26 Apr 2022 14:31:58 +0200 Subject: [PATCH] ci: replaced node 17 with node 18 node 17 is out of support since 01 Apr 2022, so it isn't really beneficial to keep this version in the ci loop. We replace it with the new LTS release 18 Signed-off-by: Philip Molares --- .github/workflows/e2e-tests.yml | 2 +- .github/workflows/nest.js.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/e2e-tests.yml b/.github/workflows/e2e-tests.yml index 748530706..6a6ab6987 100644 --- a/.github/workflows/e2e-tests.yml +++ b/.github/workflows/e2e-tests.yml @@ -11,7 +11,7 @@ on: branches: [ develop ] env: - NODEJS_VERSION: 17 + NODEJS_VERSION: 18 jobs: diff --git a/.github/workflows/nest.js.yml b/.github/workflows/nest.js.yml index ae155d59b..7eabf6ce4 100644 --- a/.github/workflows/nest.js.yml +++ b/.github/workflows/nest.js.yml @@ -12,7 +12,7 @@ on: branches: [ develop ] env: - NODEJS_VERSION: 17 + NODEJS_VERSION: 18 jobs: lint: @@ -35,7 +35,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [12.x, 14.x, 16.x, 17.x ] + node-version: [12.x, 14.x, 16.x, 18.x ] steps: - uses: actions/checkout@v3 - name: Use Node.js ${{ matrix.node-version }}