Skip to content

Commit 54b0277

Browse files
fix: remove deprecated --exclude-mail flag from lychee args
lychee v0.21.0 (bundled with lychee-action v2.8.0) removed the --exclude-mail flag. Mail links are now excluded by default, so the flag is no longer needed. This fixes the broken-links-checker workflow failure. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 63ec7d2 commit 54b0277

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/broken-links-checker.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
uses: lycheeverse/lychee-action@v2.8.0
3838
with:
3939
args: >
40-
--verbose --exclude-mail --no-progress --exclude ^https?://
40+
--verbose --no-progress --exclude ^https?://
4141
${{ steps.changed-markdown-files.outputs.all_changed_files }}
4242
failIfEmpty: false
4343
env:
@@ -50,7 +50,7 @@ jobs:
5050
uses: lycheeverse/lychee-action@v2.8.0
5151
with:
5252
args: >
53-
--verbose --exclude-mail --no-progress --exclude ^https?://
53+
--verbose --no-progress --exclude ^https?://
5454
'**/*.md'
5555
failIfEmpty: false
5656
env:

0 commit comments

Comments
 (0)