From 9920a2465c0ff12d5eef6dada05689e53dc9d39d Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Thu, 6 Apr 2023 11:46:31 -0700 Subject: [PATCH] feat: update link check workflow --- .github/workflows/scheduled-link-checker.yaml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/scheduled-link-checker.yaml b/.github/workflows/scheduled-link-checker.yaml index c1bf73f8..3a5cf134 100644 --- a/.github/workflows/scheduled-link-checker.yaml +++ b/.github/workflows/scheduled-link-checker.yaml @@ -11,8 +11,11 @@ jobs: runs-on: ubuntu-latest steps: - name: Check links on site - uses: mattorb/actions-muffet@v2.4.2 + uses: ScholliYT/Broken-Links-Crawler-Action@v3 with: - args: > - --timeout 20 - https://coryd.dev \ No newline at end of file + website_url: 'https://coryd.dev' + resolve_before_filtering: 'true' + verbose: 'true' + max_retry_time: 30 + max_retries: 5 + max_depth: 1 \ No newline at end of file