@@ -16,15 +16,15 @@ jobs:
1616
1717 steps :
1818 - name : Checkout Repo
19- uses : actions/checkout@v4
19+ uses : actions/checkout@v5
2020 with :
2121 fetch-depth : 0
2222
2323 # For PR : Get only changed markdown files
2424 - name : Get changed markdown files (PR only)
2525 id : changed-markdown-files
2626 if : github.event_name == 'pull_request'
27- uses : tj-actions/changed-files@ed68ef82c095e0d48ec87eccea555d944a631a4c # v46
27+ uses : tj-actions/changed-files@24d32ffd492484c1d75e0c0b894501ddb9d30d62 # v46
2828 with :
2929 files : |
3030 **/*.md
@@ -34,10 +34,10 @@ jobs:
3434 - name : Check Broken Links in Changed Markdown Files
3535 id : lychee-check-pr
3636 if : github.event_name == 'pull_request' && steps.changed-markdown-files.outputs.any_changed == 'true'
37- uses : lycheeverse/lychee-action@v2.4 .1
37+ uses : lycheeverse/lychee-action@v2.6 .1
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 :
@@ -47,10 +47,10 @@ jobs:
4747 - name : Check Broken Links in All Markdown Files in Entire Repo (Manual Trigger)
4848 id : lychee-check-manual
4949 if : github.event_name == 'workflow_dispatch'
50- uses : lycheeverse/lychee-action@v2.4 .1
50+ uses : lycheeverse/lychee-action@v2.6 .1
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