From 28b6e0a5506bf95828d8b30d0b46b90b6970b064 Mon Sep 17 00:00:00 2001 From: Vara Prasad Bandaru Date: Thu, 14 Mar 2024 17:46:16 +0530 Subject: [PATCH] Pin markdown-link-check to 3.11 --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4a44afe..70739f0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,9 +23,11 @@ jobs: run: | npm install -g prettier && prettier --check '**/*.md' '**/*.yml' + # S3v3ru5: Pin `markdown-link-check` to version 3.11 until the following issue is resolved: + # https://github.com/tcort/markdown-link-check/issues/304 - name: Markdown link check run: | - npm install -g markdown-link-check && find . -name '*.md' | xargs markdown-link-check + npm install -g markdown-link-check@3.11 && find . -name '*.md' | xargs markdown-link-check - name: Cargo sort run: |