From 893da0142c0d9b723ac2d2779368543267eec526 Mon Sep 17 00:00:00 2001 From: Tilman Vatteroth Date: Sun, 20 Apr 2025 19:36:22 +0200 Subject: [PATCH] ci: update node to v22 Signed-off-by: Tilman Vatteroth --- .github/workflows/docs-netlify-deploy.yml | 2 +- .github/workflows/e2e-tests.yml | 2 +- .github/workflows/lint.yml | 2 +- .github/workflows/test-and-build.yml | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/docs-netlify-deploy.yml b/.github/workflows/docs-netlify-deploy.yml index 2882fdb0a..b79a68ccd 100644 --- a/.github/workflows/docs-netlify-deploy.yml +++ b/.github/workflows/docs-netlify-deploy.yml @@ -11,7 +11,7 @@ on: env: NETLIFY_VERSION: 13.2.2 - NODEJS_VERSION: 20 + NODEJS_VERSION: 22 PYTHON_VERSION: 3.11 defaults: diff --git a/.github/workflows/e2e-tests.yml b/.github/workflows/e2e-tests.yml index 3161c1657..e8963fe43 100644 --- a/.github/workflows/e2e-tests.yml +++ b/.github/workflows/e2e-tests.yml @@ -20,7 +20,7 @@ concurrency: cancel-in-progress: true env: - NODEJS_VERSION: 20 + NODEJS_VERSION: 22 HEAD_COMMIT_HASH: "${{ !!github.event.pull_request && github.event.pull_request.head.sha || github.sha }}" jobs: diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index a411bdd03..ba470e06e 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -16,7 +16,7 @@ permissions: contents: read env: - NODEJS_VERSION: 20 + NODEJS_VERSION: 22 jobs: lint: diff --git a/.github/workflows/test-and-build.yml b/.github/workflows/test-and-build.yml index d71803410..d3880f29d 100644 --- a/.github/workflows/test-and-build.yml +++ b/.github/workflows/test-and-build.yml @@ -25,9 +25,9 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node: [ '20' ] # Are you changing this? Don't forget to update the min. and recommended node version in docs/content/how-to/develop/setup.md! + node: [ '22' ] # Are you changing this? Don't forget to update the min. and recommended node version in docs/content/how-to/develop/setup.md! include: - - node: '20' + - node: '22' coverage: true name: Test and build with NodeJS ${{ matrix.node }} steps: