From 73f3a114d6acc10cafd45df635e8117e638febf4 Mon Sep 17 00:00:00 2001 From: seaxwi <71350948+seaxwi@users.noreply.github.com> Date: Tue, 10 Jun 2025 09:55:06 +0200 Subject: [PATCH 1/3] Disable retries Disable retries to avoid rate limiting errors (429) --- .github/workflows/check-urls.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/check-urls.yml b/.github/workflows/check-urls.yml index 3194ad98..94073a58 100644 --- a/.github/workflows/check-urls.yml +++ b/.github/workflows/check-urls.yml @@ -15,7 +15,7 @@ jobs: id: lychee uses: lycheeverse/lychee-action@v1 with: - args: --no-progress --verbose --require-https 'content/*/*/*.md' + args: --no-progress --verbose --require-https 'content/*/*/*.md' --max-retries 0 fail: true env: CLICOLOR_FORCE: 1 From 01b0ea7e6355f2e3da0ae53a9a29e71d00179169 Mon Sep 17 00:00:00 2001 From: seaxwi <71350948+seaxwi@users.noreply.github.com> Date: Tue, 10 Jun 2025 09:58:56 +0200 Subject: [PATCH 2/3] Limit concurrent requests Limit concurrent requests to avoid rate limiting errors (429) --- .github/workflows/check-urls.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/check-urls.yml b/.github/workflows/check-urls.yml index 94073a58..886494ea 100644 --- a/.github/workflows/check-urls.yml +++ b/.github/workflows/check-urls.yml @@ -15,7 +15,7 @@ jobs: id: lychee uses: lycheeverse/lychee-action@v1 with: - args: --no-progress --verbose --require-https 'content/*/*/*.md' --max-retries 0 + args: --no-progress --verbose --require-https 'content/*/*/*.md' --max-retries 0 --max-concurrency 32 fail: true env: CLICOLOR_FORCE: 1 From 835184434342ea97c480b09b2e1aee0e28fa982d Mon Sep 17 00:00:00 2001 From: seaxwi <71350948+seaxwi@users.noreply.github.com> Date: Tue, 10 Jun 2025 16:22:21 +0200 Subject: [PATCH 3/3] Limit concurrent requests more Strongly limit concurrent requests to avoid rate limiting errors (429) --- .github/workflows/check-urls.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/check-urls.yml b/.github/workflows/check-urls.yml index 886494ea..12133a38 100644 --- a/.github/workflows/check-urls.yml +++ b/.github/workflows/check-urls.yml @@ -15,7 +15,7 @@ jobs: id: lychee uses: lycheeverse/lychee-action@v1 with: - args: --no-progress --verbose --require-https 'content/*/*/*.md' --max-retries 0 --max-concurrency 32 + args: --no-progress --verbose --require-https 'content/*/*/*.md' --max-retries 0 --max-concurrency 1 fail: true env: CLICOLOR_FORCE: 1