From 475ae5711886b70bff226872281b8a118081c593 Mon Sep 17 00:00:00 2001 From: Lauren Datz <105828115+ladatz@users.noreply.github.com> Date: Mon, 15 Apr 2024 15:48:18 -0400 Subject: [PATCH] Add comment for version for markdown-link-check --- .github/workflows/markdown-ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/markdown-ci.yml b/.github/workflows/markdown-ci.yml index 879b6ef..fcfbdd9 100644 --- a/.github/workflows/markdown-ci.yml +++ b/.github/workflows/markdown-ci.yml @@ -29,5 +29,7 @@ jobs: steps: - uses: actions/checkout@v2 - run: | + # markdown-link-check had a regression introduced in version 3.12.0. Keep it at 3.11.2 until that is resolved + # Issue: https://github.com/tcort/markdown-link-check/issues/304 npm install markdown-link-check@3.11.2 find . -type d \( -name node_modules -o -name .github \) -prune -o -type f -name '*.md' -print0 | xargs -0 -n1 node_modules/.bin/markdown-link-check --config .markdownlinkcheck.jsonc --quiet