Skip to content

Commit 96170d3

Browse files
committed
explicitly install nokogiri 1.15.5
It's the last version of nokogiri that works with ruby 2.7.
1 parent 84052f9 commit 96170d3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,9 @@ jobs:
124124
125125
- name: Install htmlproofer
126126
if: ${{ ! matrix.script.no-html-proofer }}
127-
run: sudo gem install html-proofer -v 3.19.4 --no-document
127+
run: |
128+
sudo gem install nokogiri -v 1.15.5 --no-document
129+
sudo gem install html-proofer -v 3.19.4 --no-document
128130
129131
- name: Run ${{ matrix.script.path }}
130132
run: main/_scripts/checks/${{ matrix.script.path }}

0 commit comments

Comments
 (0)