docs: upgrade website dependencies and CI#968
Merged
Conversation
delei
marked this pull request as draft
July 26, 2026 10:01
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the documentation website toolchain and CI automation to address Dependabot-reported vulnerabilities by upgrading Docusaurus and related Node/pnpm dependencies, aligning Node requirements, and adjusting docs/translation metadata.
Changes:
- Upgrade Docusaurus (and related frontend deps) and raise the website Node.js requirement to >= 24.
- Update GitHub Actions workflows for docs CI/preview/deploy to use newer actions and pnpm, and tighten installs with
--frozen-lockfile. - Adjust docs i18n labels and blog frontmatter (removing explicit
date) to address markdown/date parsing issues.
Reviewed changes
Copilot reviewed 13 out of 14 changed files in this pull request and generated 4 comments.
Show a summary per file
| File | Description |
|---|---|
| website/README.md | Updates documented Node.js requirement for local site builds. |
| website/pnpm-workspace.yaml | Updates pnpm workspace-level config (build allowlist + dependency overrides). |
| website/package.json | Bumps Docusaurus/React-related dependencies and sets Node/pnpm engine requirements. |
| website/i18n/zh-cn/docusaurus-plugin-content-docs/current.json | Adds new sidebar category label translation. |
| website/i18n/en/docusaurus-plugin-content-docs/current.json | Adds new sidebar category label translation. |
| website/community/contribution/contribute-doc.md | Updates Node.js requirement in contribution docs. |
| website/i18n/zh-cn/docusaurus-plugin-content-docs-community/current/contribution/contribute-doc.md | Updates Node.js requirement in Chinese contribution docs. |
| website/blog/2026-02-27-apache-fesod-2-0-1-incubating-released.md | Removes explicit blog date frontmatter entry. |
| website/i18n/zh-cn/docusaurus-plugin-content-blog/2026-02-27-apache-fesod-2-0-1-incubating-released.md | Removes explicit blog date frontmatter entry (Chinese). |
| .github/workflows/preview-docs.yml | Updates docs preview workflow tooling versions and install strictness. |
| .github/workflows/deploy-docs.yml | Updates docs deploy workflow tooling versions and install strictness. |
| .github/workflows/ci-docs.yml | Updates docs CI workflow tooling versions and uses --frozen-lockfile. |
| .github/dependabot.yml | Adds npm updates for /website and attempts to add grouping/cooldown policy. |
Comment on lines
+32
to
36
| - name: Setup pnpm | ||
| uses: pnpm/action-setup@v6 | ||
| with: | ||
| version: 10 | ||
| version: 11 | ||
| run_install: false |
Comment on lines
+33
to
36
| - uses: pnpm/action-setup@v6 | ||
| with: | ||
| version: 10 | ||
| version: 11 | ||
| run_install: false |
Comment on lines
36
to
40
| - name: Setup pnpm | ||
| uses: pnpm/action-setup@v4 | ||
| uses: pnpm/action-setup@v6 | ||
| with: | ||
| version: 10 | ||
| version: 11 | ||
| run_install: false |
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Purpose of the pull request
Fix the vulnerabilities identified by Dependabot.
What's changed?
v3.10.2and related dependencies24.0pnpm-lock.yamlResult
pnpm audit
markdownlint-cli2
Checklist