From 715034c3dce29eea94e801fbf9c12435ffa5f9bb Mon Sep 17 00:00:00 2001 From: Peter Dave Hello Date: Fri, 12 Apr 2024 00:40:26 +0800 Subject: [PATCH] Pin markdown-link-check to v3.11.0 on GitHub Actions Pin to v3.11.0 in GitHub Actions workflow to avoid false positive 404 errors in CI. Refs: - https://github.com/tcort/markdown-link-check/issues/250 --- .github/workflows/markdown-link-check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/markdown-link-check.yml b/.github/workflows/markdown-link-check.yml index 84c6a8c7e..3793d6358 100644 --- a/.github/workflows/markdown-link-check.yml +++ b/.github/workflows/markdown-link-check.yml @@ -18,6 +18,6 @@ jobs: with: node-version: 'lts/*' - name: Install markdown-link-check - run: npm i -g markdown-link-check + run: npm i -g markdown-link-check@3.11.0 - name: Run markdown-link-check on MD files run: find . -name "*.md" | xargs -n 1 markdown-link-check -c markdown_link_check_config.json -q