diff options
| author | Dan Allen <dan.j.allen@gmail.com> | 2022-10-09 16:12:30 -0600 |
|---|---|---|
| committer | Dan Allen <dan.j.allen@gmail.com> | 2022-10-09 16:12:30 -0600 |
| commit | 74d697e998939c6f3346c2f85c1de85bdde99c09 (patch) | |
| tree | fada118eedb90f321bfee5b1fee519f27f660a0e | |
| parent | 73b58d282c1f5c33361a33d7f42a7d2ce417973c (diff) | |
always lock version of Bundler on Windows in CI
| -rw-r--r-- | .github/workflows/ci.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d29ec59d..d2dfd81e 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' && startsWith(matrix.ruby, '3.') && '2.3.22' || 'default' }} + bundler: ${{ matrix.os == 'windows-latest' && '2.3.22' || 'default' }} bundler-cache: ${{ github.event_name != 'schedule' }} - name: Install dependencies (scheduled build only) if: github.event_name == 'schedule' |
