From a766816456fa8ef0290e3a2bc40e7570f19c8709 Mon Sep 17 00:00:00 2001 From: Wu Sheng Date: Sun, 27 Nov 2022 22:54:30 +0800 Subject: [PATCH] Bump up markdown-link-check. Ignore 127.0.0.1 --- .dlc.json | 3 +++ .github/workflows/dead-link-checker.yaml | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.dlc.json b/.dlc.json index 11f9d991a7..ca5e3d89d9 100644 --- a/.dlc.json +++ b/.dlc.json @@ -3,6 +3,9 @@ { "pattern": "^http://localhost" }, + { + "pattern": "^http://127.0.0.1" + }, { "pattern": "^https://github.com/apache/skywalking-java/blob/master/changes/changes-x.y.z.md$" }, diff --git a/.github/workflows/dead-link-checker.yaml b/.github/workflows/dead-link-checker.yaml index 58f3667770..a45c5b1341 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.10.0 + - run: sudo npm install -g markdown-link-check@3.10.3 - run: | for file in $(find . -name "*.md"); do markdown-link-check -c .dlc.json -q "$file"