Skip to content

Commit 53ae1fc

Browse files
committed
Fix link checking
- update action to currently maintained version - consider 429 (rate limiting) and 403 (forbidden) as success since sites like developer.arm.com sometimes block the action.
1 parent b45c2d3 commit 53ae1fc

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ jobs:
4242
markdown-link-check:
4343
runs-on: ubuntu-latest
4444
steps:
45-
- uses: actions/checkout@v4.1.7
46-
- uses: gaurav-nelson/github-action-markdown-link-check@v1
45+
- uses: actions/checkout@v6.0.2
46+
- uses: tcort/github-action-markdown-link-check@v1
4747
with:
4848
config-file: '.github/workflows/markdown-link-check.json'
4949

.github/workflows/markdown-link-check.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@
33
{
44
"pattern": "^https://developer.arm.com/architectures/instruction-sets/intrinsics/"
55
}
6-
]
6+
],
7+
"aliveStatusCodes": [200, 206, 403, 429]
78
}

0 commit comments

Comments
 (0)