From f4c00b78e21c8d5fdbc74dc45f76f11ab1deef02 Mon Sep 17 00:00:00 2001 From: Damien Arrachequesne Date: Thu, 4 Jul 2024 18:02:37 +0200 Subject: [PATCH] ci: add Node.js 22 in the test matrix Reference: https://github.com/nodejs/Release --- .github/workflows/build-examples.yml | 4 ++-- .github/workflows/ci.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-examples.yml b/.github/workflows/build-examples.yml index 43a100ceb9..2e713e3cd0 100644 --- a/.github/workflows/build-examples.yml +++ b/.github/workflows/build-examples.yml @@ -31,10 +31,10 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 - - name: Use Node.js 20 + - name: Use Node.js 22 uses: actions/setup-node@v4 with: - node-version: 20 + node-version: 22 - name: Build ${{ matrix.example }} run: | diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 106fe36240..2be0bc0fc4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,7 @@ jobs: matrix: node-version: - 16 - - 20 + - 22 steps: - name: Checkout repository