From a5e10e6df8f566341b95d56f95376f43bcbc147b Mon Sep 17 00:00:00 2001 From: Alec Gibson <12036746+alecgibson@users.noreply.github.com> Date: Tue, 6 Feb 2024 09:58:01 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=E2=80=8D=E2=99=80=EF=B8=8F=20Speci?= =?UTF-8?q?fy=20`bundler`=20version?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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/ --- .github/workflows/docs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index ea741568d..a9880d0b0 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -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