summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorDan Allen <dan.j.allen@gmail.com>2022-10-09 15:56:44 -0600
committerDan Allen <dan.j.allen@gmail.com>2022-10-09 15:56:44 -0600
commit610f6aedde83e46a1c874d3364de91da67263709 (patch)
treee304bc0a52c260f5558af0547de78950de776c8b /.github
parent2f500a848130af2ec39a624834df709d67966c12 (diff)
force Bundler version for any Ruby 3 release on Windows
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index f5da6b5f..4ee629b0 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -85,7 +85,7 @@ jobs:
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- bundler: ${{ matrix.os == 'windows-latest' && matrix.ruby == '3.0' && '2.3' || 'default' }}
+ bundler: ${{ matrix.os == 'windows-latest' && startsWith(matrix.ruby, '3.') && '2.3' || 'default' }}
bundler-cache: ${{ matrix.os != 'windows-latest' && github.event_name != 'schedule' }}
- name: Install dependencies (scheduled build only)
if: matrix.os == 'windows-latest' || github.event_name == 'schedule'