Skip to content

Commit a5e10e6

Browse files
committed
👷‍♀️ Specify bundler version
The docs build currently fails with: ``` Run cd docs && gem install bundler && bundle install ERROR: Error installing bundler: The last version of bundler (>= 0) to support your Ruby & RubyGems was 2.4.22. Try installing it with `gem install bundler -v 2.4.22` ``` This change follows the advice of the error message, and specifies the version of bundler to install, since we [can't bump Ruby][1]. [1]: https://pages.github.com/versions/
1 parent d985e90 commit a5e10e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/docs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ jobs:
2323
with:
2424
ruby-version: '2.7'
2525
- name: Install
26-
run: cd docs && gem install bundler && bundle install
26+
run: cd docs && gem install bundler -v 2.4.22 && bundle install
2727
- name: Build
2828
run: cd docs && bundle exec jekyll build

0 commit comments

Comments
 (0)