You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by ke...@apache.org on 2022/04/19 12:30:14 UTC

[skywalking-java] 01/01: Fix dead link checker

This is an automated email from the ASF dual-hosted git repository.

kezhenxu94 pushed a commit to branch fix-dlc
in repository https://gitbox.apache.org/repos/asf/skywalking-java.git

commit 9bf2744b31e2610441c43b0c3c882fd924732f33
Author: kezhenxu94 <ke...@apache.org>
AuthorDate: Tue Apr 19 20:30:02 2022 +0800

    Fix dead link checker
---
 .dlc.json                                | 2 ++
 .github/workflows/dead-link-checker.yaml | 2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/.dlc.json b/.dlc.json
index 219f2d584..be265e410 100644
--- a/.dlc.json
+++ b/.dlc.json
@@ -19,6 +19,8 @@
   "fallbackRetryDelay": "1000s",
   "aliveStatusCodes": [
     200,
+	301,
+	302,
     401
   ]
 }
diff --git a/.github/workflows/dead-link-checker.yaml b/.github/workflows/dead-link-checker.yaml
index 6090dc8df..58f366777 100644
--- a/.github/workflows/dead-link-checker.yaml
+++ b/.github/workflows/dead-link-checker.yaml
@@ -29,7 +29,7 @@ jobs:
     timeout-minutes: 30
     steps:
       - uses: actions/checkout@v2
-      - run: sudo npm install -g markdown-link-check@3.8.7
+      - run: sudo npm install -g markdown-link-check@3.10.0
       - run: |
           for file in $(find . -name "*.md"); do
             markdown-link-check -c .dlc.json -q "$file"