Skip to content

Commit a769005

Browse files
authored
Merge pull request #332 from scala/dependabot/bundler/html-proofer-5.0.8
Bump html-proofer from 4.4.3 to 5.0.8
2 parents 2c19831 + 63ba040 commit a769005

File tree

3 files changed

+44
-18
lines changed

3 files changed

+44
-18
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ jobs:
1212
build:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@v4
1616
- uses: ruby/setup-ruby@v1
1717
with:
18-
ruby-version: '3.0.5'
18+
ruby-version: '3.1.4'
1919
bundler-cache: true
2020
- name: Bower
2121
run: |
@@ -28,7 +28,7 @@ jobs:
2828
( ! grep -qie Error -e Warn error.log )
2929
- name: Cache HTMLProofer
3030
id: cache-htmlproofer
31-
uses: actions/cache@v2
31+
uses: actions/cache@v4
3232
with:
3333
path: tmp/.htmlproofer
3434
key: ${{ runner.os }}-htmlproofer
@@ -39,10 +39,10 @@ jobs:
3939
# Also ignore github.com because we have too many and they eventually return 429
4040
bundle exec htmlproofer ./_site/\
4141
--only-4xx\
42-
--ignore-empty-alt=true\
43-
--allow-hash-href=true\
44-
--enforce-https=false\
45-
--ignore-missing-alt=true\
42+
--ignore-empty-alt\
43+
--allow-hash-href\
44+
--no-enforce-https\
45+
--ignore-missing-alt\
4646
--swap-urls "https\:\/\/scala\.epfl\.ch:"\
4747
--ignore-urls "/twitter.com/,/x.com/,/github.com/"\
4848
--cache '{ "timeframe": { "external": "30d" } }'

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ gem 'github-pages'
33
gem 'webrick'
44
#
55
gem 'html-proofer'
6-
# gem 'html-proofer' # link-checking: bundle exec htmlproofer ./_site/ --only-4xx --ignore-empty-alt=true --allow-hash-href=true
6+
# gem 'html-proofer' # link-checking: bundle exec htmlproofer ./_site/ --only-4xx --ignore-empty-alt --allow-hash-href
77
gem 'jekyll-redirect-from'

Gemfile.lock

Lines changed: 36 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,32 @@
11
GEM
22
remote: https://rubygems.org/
33
specs:
4+
Ascii85 (1.1.0)
45
activesupport (7.0.4.3)
56
concurrent-ruby (~> 1.0, >= 1.0.2)
67
i18n (>= 1.6, < 2)
78
minitest (>= 5.1)
89
tzinfo (~> 2.0)
9-
addressable (2.8.1)
10+
addressable (2.8.6)
1011
public_suffix (>= 2.0.2, < 6.0)
12+
afm (0.2.2)
13+
async (2.9.0)
14+
console (~> 1.10)
15+
fiber-annotation
16+
io-event (~> 1.5, >= 1.5.1)
17+
timers (~> 4.1)
18+
bigdecimal (3.1.6)
1119
coffee-script (2.4.1)
1220
coffee-script-source
1321
execjs
1422
coffee-script-source (1.11.1)
1523
colorator (1.1.0)
1624
commonmarker (0.23.9)
1725
concurrent-ruby (1.2.2)
26+
console (1.23.5)
27+
fiber-annotation
28+
fiber-local
29+
json
1830
dnsruby (1.61.9)
1931
simpleidn (~> 0.1)
2032
em-websocket (0.5.3)
@@ -28,7 +40,9 @@ GEM
2840
faraday-net_http (>= 2.0, < 3.1)
2941
ruby2_keywords (>= 0.0.4)
3042
faraday-net_http (3.0.2)
31-
ffi (1.15.5)
43+
ffi (1.16.3)
44+
fiber-annotation (0.2.0)
45+
fiber-local (1.0.0)
3246
forwardable-extended (2.6.0)
3347
gemoji (3.0.1)
3448
github-pages (228)
@@ -82,21 +96,23 @@ GEM
8296
octokit (~> 4.0)
8397
public_suffix (>= 3.0, < 5.0)
8498
typhoeus (~> 1.3)
99+
hashery (2.1.2)
85100
html-pipeline (2.14.3)
86101
activesupport (>= 2)
87102
nokogiri (>= 1.4)
88-
html-proofer (4.4.3)
103+
html-proofer (5.0.8)
89104
addressable (~> 2.3)
90-
mercenary (~> 0.3)
105+
async (~> 2.1)
91106
nokogiri (~> 1.13)
92-
parallel (~> 1.10)
107+
pdf-reader (~> 2.11)
93108
rainbow (~> 3.0)
94109
typhoeus (~> 1.3)
95110
yell (~> 2.0)
96111
zeitwerk (~> 2.5)
97112
http_parser.rb (0.8.0)
98113
i18n (1.12.0)
99114
concurrent-ruby (~> 1.0)
115+
io-event (1.5.1)
100116
jekyll (3.9.3)
101117
addressable (~> 2.4)
102118
colorator (~> 1.0)
@@ -205,6 +221,7 @@ GEM
205221
gemoji (~> 3.0)
206222
html-pipeline (~> 2.2)
207223
jekyll (>= 3.0, < 5.0)
224+
json (2.7.1)
208225
kramdown (2.3.2)
209226
rexml
210227
kramdown-parser-gfm (1.1.0)
@@ -219,22 +236,28 @@ GEM
219236
jekyll-feed (~> 0.9)
220237
jekyll-seo-tag (~> 2.1)
221238
minitest (5.18.0)
222-
nokogiri (1.14.3-x86_64-linux)
239+
nokogiri (1.16.2-x86_64-linux)
223240
racc (~> 1.4)
224241
octokit (4.25.1)
225242
faraday (>= 1, < 3)
226243
sawyer (~> 0.9)
227-
parallel (1.22.1)
228244
pathutil (0.16.2)
229245
forwardable-extended (~> 2.6)
246+
pdf-reader (2.12.0)
247+
Ascii85 (~> 1.0)
248+
afm (~> 0.2.1)
249+
hashery (~> 2.0)
250+
ruby-rc4
251+
ttfunk
230252
public_suffix (4.0.7)
231-
racc (1.6.2)
253+
racc (1.7.3)
232254
rainbow (3.1.1)
233255
rb-fsevent (0.11.2)
234256
rb-inotify (0.10.1)
235257
ffi (~> 1.0)
236258
rexml (3.2.5)
237259
rouge (3.26.0)
260+
ruby-rc4 (0.1.5)
238261
ruby2_keywords (0.0.5)
239262
rubyzip (2.3.2)
240263
safe_yaml (1.0.5)
@@ -250,7 +273,10 @@ GEM
250273
unf (~> 0.1.4)
251274
terminal-table (1.8.0)
252275
unicode-display_width (~> 1.1, >= 1.1.1)
253-
typhoeus (1.4.0)
276+
timers (4.3.5)
277+
ttfunk (1.8.0)
278+
bigdecimal (~> 3.1)
279+
typhoeus (1.4.1)
254280
ethon (>= 0.9.0)
255281
tzinfo (2.0.6)
256282
concurrent-ruby (~> 1.0)
@@ -260,7 +286,7 @@ GEM
260286
unicode-display_width (1.8.0)
261287
webrick (1.8.1)
262288
yell (2.2.2)
263-
zeitwerk (2.6.7)
289+
zeitwerk (2.6.13)
264290

265291
PLATFORMS
266292
x86_64-linux

0 commit comments

Comments
 (0)