From 03a3fbd5a8edc2a3ebdd2d928729ac916affd16d Mon Sep 17 00:00:00 2001 From: Chris Kipp Date: Mon, 27 Feb 2023 11:43:49 +0100 Subject: [PATCH] fix(ci): update htmlproofer flags since it was updated --- .github/workflows/build.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 15b09fb8f7..0fc6596889 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -25,8 +25,9 @@ jobs: # # Checking for docs.scala-lang/blob/main leads to a chicken and egg problem because of the edit links of new pages. bundle exec htmlproofer ./_site/\ --only-4xx\ - --http-status-ignore "400,401,403,429"\ - --empty-alt-ignore\ + --ignore-status-codes "400,401,403,429"\ + --ignore-empty-alt\ --allow-hash-href\ - --url-ignore '/https://github.com/scala/docs.scala-lang/blob/main/.*/,/www.oracle.com/' + --enforce-https=false\ + --ignore-urls '/https://github.com/scala/docs.scala-lang/blob/main/.*/,/www.oracle.com/'