Skip to content

Commit

Permalink
Force a specific bundler version since Bundler 2.5 requires Ruby 3.
Browse files Browse the repository at this point in the history
  • Loading branch information
geerlingguy committed Dec 19, 2023
1 parent b5d35f9 commit 0870474
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/github-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ jobs:
container: ruby:3-buster
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v1
- uses: actions/cache@v3
with:
path: vendor/bundle
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}

- name: Install Ruby dependencies.
run: |
gem install bundler
gem install bundler -v 2.4.22
bundle install
- name: Build static site with Jekyll.
Expand Down

0 comments on commit 0870474

Please sign in to comment.