From 695b39a6e5de8db4a6c76dd7dc503a267b056239 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9my=20L=C3=A9one?= Date: Wed, 24 Sep 2025 11:18:45 +0200 Subject: [PATCH 1/2] chore: fix markdownlinkcheck --- .github/workflows/documentation.yml | 2 +- .markdownlinkcheck.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index e9c637bddd..18d5f6aad2 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -24,7 +24,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v5 - - uses: gaurav-nelson/github-action-markdown-link-check@1.0.17 + - uses: tcort/github-action-markdown-link-check@v1 with: use-quiet-mode: 'yes' use-verbose-mode: 'yes' diff --git a/.markdownlinkcheck.json b/.markdownlinkcheck.json index 1d780d02c1..2c6db36407 100644 --- a/.markdownlinkcheck.json +++ b/.markdownlinkcheck.json @@ -25,5 +25,5 @@ "retryOn429": true, "retryCount": 5, "fallbackRetryDelay": "30s", - "aliveStatusCodes": [200, 206] + "aliveStatusCodes": [200, 206, 429] } From 90d2ca8eb48994c2b217e7aeaf5574dc0e18fb81 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9my=20L=C3=A9one?= Date: Wed, 24 Sep 2025 11:56:26 +0200 Subject: [PATCH 2/2] Fix retry delay --- .markdownlinkcheck.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.markdownlinkcheck.json b/.markdownlinkcheck.json index 2c6db36407..c148037b1c 100644 --- a/.markdownlinkcheck.json +++ b/.markdownlinkcheck.json @@ -24,6 +24,6 @@ "timeout": "20s", "retryOn429": true, "retryCount": 5, - "fallbackRetryDelay": "30s", + "fallbackRetryDelay": "1s", "aliveStatusCodes": [200, 206, 429] }