From 2a10b5453fcfa65d4b82d729446b1c4913859799 Mon Sep 17 00:00:00 2001 From: Eleni Grosdouli <147995681+egrosdou01@users.noreply.github.com> Date: Tue, 14 Oct 2025 09:54:20 +0200 Subject: [PATCH] fix(docs): Fix deployment docs for v3.9.1 - Node.js version should be v20 (#11474) --- .../versioned_docs/version-3.9.1/deployment.mdx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/website/versioned_docs/version-3.9.1/deployment.mdx b/website/versioned_docs/version-3.9.1/deployment.mdx index 98f8f02cfa..18b79e86e3 100644 --- a/website/versioned_docs/version-3.9.1/deployment.mdx +++ b/website/versioned_docs/version-3.9.1/deployment.mdx @@ -401,7 +401,7 @@ jobs: fetch-depth: 0 - uses: actions/setup-node@v4 with: - node-version: 18 + node-version: 20 cache: npm - name: Install dependencies @@ -455,7 +455,7 @@ jobs: fetch-depth: 0 - uses: actions/setup-node@v4 with: - node-version: 18 + node-version: 20 cache: npm - name: Install dependencies @@ -487,7 +487,7 @@ jobs: fetch-depth: 0 - uses: actions/setup-node@v4 with: - node-version: 18 + node-version: 20 cache: yarn - name: Install dependencies @@ -541,7 +541,7 @@ jobs: fetch-depth: 0 - uses: actions/setup-node@v4 with: - node-version: 18 + node-version: 20 cache: yarn - name: Install dependencies @@ -608,7 +608,7 @@ jobs: fetch-depth: 0 - uses: actions/setup-node@v4 with: - node-version: 18 + node-version: 20 cache: yarn - name: Install dependencies run: yarn install --frozen-lockfile @@ -623,7 +623,7 @@ jobs: fetch-depth: 0 - uses: actions/setup-node@v4 with: - node-version: 18 + node-version: 20 cache: yarn - uses: webfactory/ssh-agent@v0.5.0 with: @@ -675,7 +675,7 @@ Continuous integration (CI) services are typically used to perform routine tasks ```yml title=".travis.yml" language: node_js node_js: - - 18 + - 20 branches: only: - main @@ -734,7 +734,7 @@ steps: - task: NodeTool@0 inputs: - versionSpec: '18' + versionSpec: '20' displayName: Install Node.js - script: |