diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bc7f4a50..426e24b2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -48,7 +48,12 @@ jobs: - name: Install latest bundler run: | - gem install bundler --no-document + if [[ "$(ruby -v | awk '{print $2}')" == 2.7.8* ]]; then + gem install bundler -v 2.4.4 --no-document + else + gem install bundler --no-document + fi + bundle config set without 'tools benchmarks docs' - name: Bundle install