Skip to content

Commit

Permalink
Merge pull request #3214 from github/ahpook/fix_linkcheck
Browse files Browse the repository at this point in the history
Remove version lock from html-proofer
  • Loading branch information
ahpook authored May 23, 2024
2 parents 2edb30b + 2fd1657 commit 3c9966a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.7.5
3.2
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ source "https://rubygems.org"
gem "github-pages", group: :jekyll_plugins

group :test do
gem "html-proofer", "~> 3.19.4"
gem "html-proofer"
gem "rake"
end
7 changes: 4 additions & 3 deletions script/html-proofer
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,13 @@ HTMLProofer::Runner.new(
["_site"],
parallel: { in_threads: 4 },
type: :directory,
url_ignore: url_ignores,
ignore_urls: url_ignores,
check_html: true,
check_opengraph: true,
check_img_http: true,
favicon: true,
assume_extension: true,
allow_missing_href: true,
enforce_https: false,
only_4xx: true,
http_status_ignore: [429]
ignore_status_codes: [429]
).run

0 comments on commit 3c9966a

Please sign in to comment.