Skip to content

Commit

Permalink
πŸ‘·β€β™€οΈ Specify bundler version
Browse files Browse the repository at this point in the history
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/
  • Loading branch information
alecgibson committed Feb 6, 2024
1 parent d985e90 commit a5e10e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ jobs:
with:
ruby-version: '2.7'
- name: Install
run: cd docs && gem install bundler && bundle install
run: cd docs && gem install bundler -v 2.4.22 && bundle install
- name: Build
run: cd docs && bundle exec jekyll build

0 comments on commit a5e10e6

Please sign in to comment.