From c30057b9392b4abf2058dad729615cae0d15f3da Mon Sep 17 00:00:00 2001 From: Vincent Fretin Date: Fri, 13 Mar 2026 09:56:23 +0100 Subject: [PATCH] Update GitHub CI to use Node.js 24 and ubuntu-24.04 --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5096ac17f6c..488f1266ea8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,17 +13,17 @@ permissions: jobs: test: name: Test Cases - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 strategy: matrix: - node-version: ['20.x'] + node-version: ['24.x'] firefox-version: ['latest'] steps: - name: Checkout Repo - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Use Node.js ${{ matrix['node-version'] }} - uses: actions/setup-node@v4 + uses: actions/setup-node@v6 with: node-version: ${{ matrix['node-version'] }} cache: 'npm'