Skip to content

Commit b1894e2

Browse files
authored
DOC-3520: Downgrade Node to 22 LTS in deploy workflow (#4158)
Node 24.16.0 (shipped in runner image 20260525.161.1) causes isomorphic-git's HTTP transport to silently fail, resulting in Antora producing zero output. Node 22 LTS is unaffected. Also reverts the unnecessary Antora version pin from #4155 since the root cause was Node, not the Antora version.
1 parent cf417b4 commit b1894e2

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/deploy_docs_v2.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
uses: actions/setup-node@v5
4343
with:
4444
cache: 'yarn'
45-
node-version: 24
45+
node-version: 22
4646

4747
- name: Install dependencies
4848
run: yarn install

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@
3434
"liquidjs": ">=10.25.7"
3535
},
3636
"devDependencies": {
37-
"@antora/cli": "3.1.10",
38-
"@antora/site-generator-default": "3.1.10",
37+
"@antora/cli": "^3.1.10",
38+
"@antora/site-generator-default": "^3.1.10",
3939
"@tinymce/antora-extension-livedemos": "^0.1.0",
4040
"@tinymce/moxiedoc": "^0.3.0",
4141
"dom-to-semantic-markdown": "^1.5.0",

0 commit comments

Comments
 (0)