Skip to content

Commit bad8a43

Browse files
committed
Update htmlproofer
1 parent 41b9a99 commit bad8a43

File tree

3 files changed

+40
-27
lines changed

3 files changed

+40
-27
lines changed

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
run: JEKYLL_ENV=production bundle exec jekyll build -d docs
3232

3333
- name: Run HTMLProofer
34-
run: bundle exec htmlproofer "./docs" --check-opengraph --check-favicon --http_status_ignore "999" --typhoeus-config "{\"ssl_verifypeer\":false}" --disable-external
34+
run: bundle exec htmlproofer "./docs" --ignore_status_codes "999" --typhoeus "{\"ssl_verifypeer\":false}" --disable-external --no-enforce-https --checks "Links,Favicon,Images"
3535

3636
- name: Configure Git
3737
run: |

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ ruby RUBY_VERSION
33

44
gem "rake", "~> 12"
55
gem "jekyll"
6-
gem "html-proofer", "~> 3.9"
6+
gem "html-proofer", "~> 5"
77
gem "kramdown-parser-gfm"
88
gem "webrick"
99

Gemfile.lock

Lines changed: 38 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,41 @@
11
GEM
22
remote: https://rubygems.org/
33
specs:
4-
activesupport (5.2.3)
5-
concurrent-ruby (~> 1.0, >= 1.0.2)
6-
i18n (>= 0.7, < 2)
7-
minitest (~> 5.1)
8-
tzinfo (~> 1.1)
4+
Ascii85 (1.1.0)
95
addressable (2.8.0)
106
public_suffix (>= 2.0.2, < 5.0)
7+
afm (0.2.2)
8+
async (2.5.0)
9+
console (~> 1.10)
10+
io-event (~> 1.1)
11+
timers (~> 4.1)
1112
colorator (1.1.0)
12-
colorize (0.8.1)
1313
concurrent-ruby (1.1.10)
14+
console (1.16.2)
15+
fiber-local
1416
em-websocket (0.5.3)
1517
eventmachine (>= 0.12.9)
1618
http_parser.rb (~> 0)
17-
ethon (0.12.0)
18-
ffi (>= 1.3.0)
19+
ethon (0.16.0)
20+
ffi (>= 1.15.0)
1921
eventmachine (1.2.7)
2022
ffi (1.15.5)
23+
fiber-local (1.0.0)
2124
forwardable-extended (2.6.0)
22-
html-proofer (3.10.2)
23-
activesupport (>= 4.2, < 6.0)
25+
hashery (2.1.2)
26+
html-proofer (5.0.6)
2427
addressable (~> 2.3)
25-
colorize (~> 0.8)
26-
mercenary (~> 0.3.2)
27-
nokogiri (~> 1.9)
28-
parallel (~> 1.3)
28+
async (~> 2.1)
29+
nokogiri (~> 1.13)
30+
pdf-reader (~> 2.11)
31+
rainbow (~> 3.0)
2932
typhoeus (~> 1.3)
3033
yell (~> 2.0)
34+
zeitwerk (~> 2.5)
3135
http_parser.rb (0.8.0)
3236
i18n (0.9.5)
3337
concurrent-ruby (~> 1.0)
38+
io-event (1.1.7)
3439
jekyll (3.9.2)
3540
addressable (~> 2.4)
3641
colorator (~> 1.0)
@@ -69,39 +74,47 @@ GEM
6974
rb-fsevent (~> 0.10, >= 0.10.3)
7075
rb-inotify (~> 0.9, >= 0.9.10)
7176
mercenary (0.3.6)
72-
mini_portile2 (2.4.0)
73-
minitest (5.11.3)
74-
nokogiri (1.10.2)
75-
mini_portile2 (~> 2.4.0)
76-
parallel (1.17.0)
77+
mini_portile2 (2.8.1)
78+
nokogiri (1.14.3)
79+
mini_portile2 (~> 2.8.0)
80+
racc (~> 1.4)
7781
pathutil (0.16.2)
7882
forwardable-extended (~> 2.6)
83+
pdf-reader (2.11.0)
84+
Ascii85 (~> 1.0)
85+
afm (~> 0.2.1)
86+
hashery (~> 2.0)
87+
ruby-rc4
88+
ttfunk
7989
public_suffix (4.0.7)
90+
racc (1.6.2)
91+
rainbow (3.1.1)
8092
rake (12.3.2)
8193
rb-fsevent (0.11.1)
8294
rb-inotify (0.10.1)
8395
ffi (~> 1.0)
8496
rexml (3.2.5)
8597
rouge (3.28.0)
98+
ruby-rc4 (0.1.5)
8699
safe_yaml (1.0.5)
87100
sass (3.7.4)
88101
sass-listen (~> 4.0.0)
89102
sass-listen (4.0.0)
90103
rb-fsevent (~> 0.9, >= 0.9.4)
91104
rb-inotify (~> 0.9, >= 0.9.7)
92-
thread_safe (0.3.6)
93-
typhoeus (1.3.1)
105+
timers (4.3.5)
106+
ttfunk (1.7.0)
107+
typhoeus (1.4.0)
94108
ethon (>= 0.9.0)
95-
tzinfo (1.2.5)
96-
thread_safe (~> 0.1)
97109
webrick (1.7.0)
98-
yell (2.1.0)
110+
yell (2.2.2)
111+
zeitwerk (2.6.7)
99112

100113
PLATFORMS
101114
ruby
102115

103116
DEPENDENCIES
104-
html-proofer (~> 3.9)
117+
html-proofer (~> 5)
105118
jekyll
106119
jekyll-compose (~> 0.5)
107120
jekyll-feed (~> 0.12)

0 commit comments

Comments
 (0)