fix: ci - harden link checks

This commit is contained in:
tukuaiai
2026-05-04 04:12:08 +08:00
parent da52264bb3
commit b56e5364cf
5 changed files with 35 additions and 12 deletions
+1 -1
View File
@@ -6,7 +6,7 @@
我们恳请您通过电子邮件向我们报告任何潜在的安全漏洞,而不是在公共 Issue 跟踪器中披露。这将使我们有机会在漏洞被公开利用之前进行修复。
请将详细信息发送至:tukuai.ai@gmail.com
请将详细信息发送至:[tukuai.ai@gmail.com](mailto:tukuai.ai@gmail.com)
请在报告中包含以下信息:
* 漏洞的详细描述。
+19 -1
View File
@@ -16,6 +16,8 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v6
with:
submodules: recursive
- name: Setup Node.js
uses: actions/setup-node@v6
with:
@@ -39,7 +41,23 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
submodules: recursive
- name: Link Checker
uses: lycheeverse/lychee-action@v2.8.0
with:
args: --verbose --no-progress --exclude-path .history --exclude-path .github/wiki --exclude-path node_modules --exclude-path tools/external --exclude-path tools/chat-vault './**/*.md'
args: >-
--verbose
--no-progress
--exclude-path .history
--exclude-path .github/wiki
--exclude-path node_modules
--exclude-path tools/external
--exclude-path tools/chat-vault
--exclude-path tools/prompts-library
--exclude 'https://chatgpt.com.*'
--exclude 'https://claude.ai.*'
--exclude 'https://app.augmentcode.com.*'
--exclude 'https://platform.openai.com.*'
--exclude 'https://user-images.githubusercontent.com.*'
'./**/*.md'