What changed, and why it matters
This commit simply updates the version of a link-checking tool (mlc) used in Bitcoin Core's automated CI linting from v0.19.0 to v1. There is no code change affecting Bitcoin Core itself, its consensus rules, networking, wallet, or any user-facing functionality. It is a routine dependency bump in a developer-only script.
No security action needed. Review the mlc v1 release notes for any breaking changes in link-checking behavior if CI linting begins to fail.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The diff changes one line in ci/lint/01_install.sh, setting MLC_VERSION from v0.19.0 to v1. mlc (Markup Link Checker) is a third-party tool used during CI to verify that documentation links are not broken. The change only affects how the CI environment downloads the mlc binary. No Bitcoin Core source code, build logic, or runtime behavior is modified.
Changed components
ci/lint/01_install.shInspect captured patch +1 / −1
diff --git a/ci/lint/01_install.sh b/ci/lint/01_install.sh
index a00d95da..6713ca8d 100755
--- a/ci/lint/01_install.sh
+++ b/ci/lint/01_install.sh
@@ -51,7 +51,7 @@ curl -sL "https://github.com/koalaman/shellcheck/releases/download/${SHELLCHECK_
tar --xz -xf - --directory /tmp/
mv "/tmp/shellcheck-${SHELLCHECK_VERSION}/shellcheck" /usr/bin/
-MLC_VERSION=v0.19.0
+MLC_VERSION=v1
MLC_BIN=mlc-x86_64-linux
curl -sL "https://github.com/becheran/mlc/releases/download/${MLC_VERSION}/${MLC_BIN}" -o "/usr/bin/mlc"
chmod +x /usr/bin/mlc
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.