Skip to content

Commit

Permalink
Fix Markdown Anchor Link Check (#722)
Browse files Browse the repository at this point in the history
**Why?**

With the release of MegaLinter v7.11.0, the markdown-link-check dependency was
upgraded to v3.12.1. This, however, fails checks where anchor links are used.

**What?**

Fixed the MegaLinter workflow to v7.10.0 for now.
We can revert this change/loosen the requirement to v7 when the issue is
resolved later on.
  • Loading branch information
sbkok committed May 13, 2024
1 parent 67d9678 commit 39179a7
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/mega-linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,11 @@ jobs:

- name: MegaLinter
id: ml
uses: oxsecurity/megalinter@v7
# MegaLinter v7.11 upgrades Markdown-Link-Check to v3.12.1
# This version broke anchor link checks according to:
# https://github.com/tcort/markdown-link-check/issues/304
# Setting the version to v7.10.0 for now:
uses: oxsecurity/megalinter@v7.10.0
env:
# All available variables are described in documentation
# https://megalinter.io/configuration/
Expand Down

0 comments on commit 39179a7

Please sign in to comment.