From 643eded838aa6e474877cae46dcafb6d72c7d5fb Mon Sep 17 00:00:00 2001 From: Ellpeck Date: Sat, 21 Dec 2024 23:46:53 +0100 Subject: [PATCH] increase timeout and retry count for url checks (since instagram seems to be weird abt it) --- .github/workflows/checks.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 59ffbb8..0475f94 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -12,8 +12,8 @@ jobs: subfolder: docs/articles file_types: .md,.yml verbose: true - retry_count: 3 - timeout: 30 + retry_count: 5 + timeout: 60 - name: Check Blog Links uses: urlstechie/urlchecker-action@master if: always() @@ -21,13 +21,13 @@ jobs: subfolder: web/_posts file_types: .md verbose: true - retry_count: 3 - timeout: 30 + retry_count: 5 + timeout: 60 - name: Check Changelog Links uses: urlstechie/urlchecker-action@master if: always() with: include_files: Changelog.md verbose: true - retry_count: 3 - timeout: 30 + retry_count: 5 + timeout: 60