From 86a02b9344c09ec71ffa54b136a84930e1237ce7 Mon Sep 17 00:00:00 2001 From: Samuel Moelius <35515885+smoelius@users.noreply.github.com> Date: Wed, 13 Mar 2024 05:49:14 -0400 Subject: [PATCH] Pin `markdown-link-check` to version 3.11 --- tests/ci.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/ci.rs b/tests/ci.rs index de372f9..1ca15cf 100644 --- a/tests/ci.rs +++ b/tests/ci.rs @@ -64,8 +64,10 @@ fn license() { fn markdown_link_check() { let tempdir = tempdir().unwrap(); + // smoelius: Pin `markdown-link-check` to version 3.11 until the following issue is resolved: + // https://github.com/tcort/markdown-link-check/issues/304 Command::new("npm") - .args(["install", "markdown-link-check"]) + .args(["install", "markdown-link-check@3.11"]) .current_dir(&tempdir) .assert() .success();