Skip to content

Commit d0e8858

Browse files
authored
Use maintained fork for markdown link check workflow (#445)
1 parent 3877a97 commit d0e8858

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/check-md-links.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ jobs:
2727
CONFIG_FILE: ${{ inputs.config-file }}
2828
MODIFIED_ONLY: "no"
2929
steps:
30-
- uses: actions/checkout@master
30+
- name: Checkout
31+
uses: actions/checkout@v5
3132

3233
- name: Create local version of config
3334
if: ${{ inputs.config-file == '' }}
@@ -53,14 +54,16 @@ jobs:
5354
}' > 'markdown.links.config.json'
5455
echo "CONFIG_FILE=markdown.links.config.json" >> $GITHUB_ENV
5556
cat 'markdown.links.config.json'
57+
5658
- name: Show config
5759
run: cat ${{ env.CONFIG_FILE }}
5860

5961
- name: narrow scope for PR
6062
if: startsWith(github.event_name, 'pull_request') && inputs.force-check-all == ''
6163
run: echo "MODIFIED_ONLY=yes" >> $GITHUB_ENV
64+
6265
- name: Checking markdown link
63-
uses: gaurav-nelson/github-action-markdown-link-check@v1
66+
uses: tcort/github-action-markdown-link-check@v1
6467
with:
6568
base-branch: ${{ inputs.base-branch }}
6669
use-quiet-mode: "yes"

0 commit comments

Comments
 (0)