diff options
| author | Dan Allen <dan.j.allen@gmail.com> | 2020-12-12 23:58:14 -0700 |
|---|---|---|
| committer | Dan Allen <dan.j.allen@gmail.com> | 2020-12-13 00:58:26 -0700 |
| commit | ded4072c47d4bb23888f2f302c608cf2011133d5 (patch) | |
| tree | 9bb98fffbf4f27dd8c66ba09cea41b7dbb1feed4 | |
| parent | ceae3a79d90806676ac9704ce2c2eaee07d86839 (diff) | |
downgrade Bundler for JRuby on Windows
| -rw-r--r-- | .github/workflows/ci.yml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 66f32764..703131a4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -67,6 +67,11 @@ jobs: uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} + - name: Reinstall Bundler + if: matrix.os == 'windows-latest' && matrix.ruby == 'jruby-9.2' + run: | + gem uninstall -x bundler + gem install -N bundler -v 2.1.4 - name: Configure Bundler run: | bundle config --local path .bundle/gems |
