From 04923015f2e0d89348c48057725db664c4f4860b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Kimminich?= Date: Fri, 25 Oct 2024 15:57:01 +0200 Subject: [PATCH] Update Node.js matrix in pipelines --- .github/workflows/ci.yml | 4 ++-- .github/workflows/release.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1b14cb2..78b8c04 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,7 +24,7 @@ jobs: - name: "Use Node.js 18" uses: actions/setup-node@v2 with: - node-version: 18 + node-version: 20 cache: npm - name: "Install application" run: npm install --ignore-scripts @@ -34,7 +34,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [16, 18, 20] + node-version: [18, 20, 22] steps: - name: "Check out Git repository" uses: actions/checkout@v2 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2f0dd92..aba865a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,7 +10,7 @@ jobs: - uses: actions/checkout@v1 - uses: actions/setup-node@v2 with: - node-version: 18 + node-version: 20 cache: npm - run: npm install - uses: JS-DevTools/npm-publish@v1