From 4e1fe8c72de3c52c2b769824fb5e7c2c1ccf5e2a Mon Sep 17 00:00:00 2001 From: Avi Vahl Date: Thu, 31 Oct 2024 14:59:47 +0200 Subject: [PATCH] ci: use Node 22 (LTS) (#2590) --- .github/workflows/jekyll-gh-pages.yml.disabled | 4 ++-- .github/workflows/npm.yml | 4 ++-- .github/workflows/tests.yml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/jekyll-gh-pages.yml.disabled b/.github/workflows/jekyll-gh-pages.yml.disabled index 0b39d985e..ee3657736 100644 --- a/.github/workflows/jekyll-gh-pages.yml.disabled +++ b/.github/workflows/jekyll-gh-pages.yml.disabled @@ -26,10 +26,10 @@ jobs: runs-on: ubuntu-latest steps: - 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 registry-url: 'https://registry.npmjs.org/' cache: npm - run: npm ci diff --git a/.github/workflows/npm.yml b/.github/workflows/npm.yml index 3a38a30a3..553d13fec 100644 --- a/.github/workflows/npm.yml +++ b/.github/workflows/npm.yml @@ -7,10 +7,10 @@ jobs: runs-on: ubuntu-latest steps: - 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 registry-url: 'https://registry.npmjs.org/' cache: npm - run: npm ci diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index aaeec6c40..d84d5d679 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -8,7 +8,7 @@ jobs: strategy: fail-fast: false matrix: - node-version: [20] + node-version: [22] os: [ubuntu-latest, windows-latest, macOS-latest] steps: - uses: actions/checkout@v4