From 15d9474740309ff32871db0755b284424977e58e Mon Sep 17 00:00:00 2001 From: regexowl Date: Tue, 18 Jun 2024 10:24:52 +0200 Subject: [PATCH] workflows: Replace Node 16 with Node 20 With Node 16 being EOL since 09/2023 we could replace it with Node 20 in our development checks. --- .github/workflows/dev-checks.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/dev-checks.yml b/.github/workflows/dev-checks.yml index 522966958..fa0c1e4cd 100644 --- a/.github/workflows/dev-checks.yml +++ b/.github/workflows/dev-checks.yml @@ -10,12 +10,12 @@ jobs: strategy: matrix: - node-version: [16.x, 18.x] + node-version: [18.x, 20.x] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} cache: 'npm'