From a3e9b5543e45a427a6469334ef09d3df02579299 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=90=B4=E6=99=9F=20Wu=20Sheng?= Date: Sun, 27 Nov 2022 23:19:14 +0800 Subject: [PATCH] Bump up markdown-link-check. Ignore 127.0.0.1 (#398) --- .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 11f9d991a..ca5e3d89d 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 58f366777..a45c5b134 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"