diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 7da7c787..6ff83456 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -33,7 +33,7 @@ jobs: - id: lychee-main name: Check for Broken Links (Main Docs) - uses: lycheeverse/lychee-action@v1 + uses: lycheeverse/lychee-action@v2.0.2 with: args: --verbose --exclude-all-private --no-progress --accept '200,429' --github-token '${{ secrets.LYCHEE_TOKEN }}' './build/site/satisfactory-modding/**/*.html' fail: true @@ -44,7 +44,7 @@ jobs: - id: lychee-submods name: Check for Broken Links (Subsites) - uses: lycheeverse/lychee-action@v1 + uses: lycheeverse/lychee-action@v2.0.2 with: # TODO there surely must be a better way to do this # exclude the main docs dir from this check to avoid doing work twice diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 5225c095..6b9cc977 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -48,7 +48,7 @@ jobs: - id: lychee-main name: Check for Broken Links (Main Docs) - uses: lycheeverse/lychee-action@v1 + uses: lycheeverse/lychee-action@v2.0.2 if: ${{ github.event_name == 'push' }} with: args: --verbose --exclude-all-private --no-progress --accept '200,429' --github-token '${{ secrets.LYCHEE_TOKEN }}' './build/site/satisfactory-modding/**/*.html' @@ -63,7 +63,7 @@ jobs: - id: lychee-submods name: Check for Broken Links (Subsites) - uses: lycheeverse/lychee-action@v1 + uses: lycheeverse/lychee-action@v2.0.2 if: ${{ github.event_name == 'repository_dispatch' }} with: # TODO there surely must be a better way to do this