Lock Bundler to `v2.2.31` and bump JRuby version
- Bundler 2.2.32 causes our CI to fail prematurely, affecting checks of pull requests. - JRuby 9.2.20.1 is a recommended security fix.
This commit is contained in:
parent
a4a7e70fa1
commit
1434644dcc
|
@ -24,8 +24,8 @@ jobs:
|
||||||
ruby_version: "2.7"
|
ruby_version: "2.7"
|
||||||
- label: Ruby 3.0
|
- label: Ruby 3.0
|
||||||
ruby_version: "3.0"
|
ruby_version: "3.0"
|
||||||
- label: JRuby 9.2.14.0
|
- label: JRuby 9.2.20.1
|
||||||
ruby_version: "jruby-9.2.14.0"
|
ruby_version: "jruby-9.2.20.1"
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Repository
|
- name: Checkout Repository
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
|
@ -33,6 +33,7 @@ jobs:
|
||||||
uses: ruby/setup-ruby@v1
|
uses: ruby/setup-ruby@v1
|
||||||
with:
|
with:
|
||||||
ruby-version: ${{ matrix.ruby_version }}
|
ruby-version: ${{ matrix.ruby_version }}
|
||||||
|
bundler: "2.2.31"
|
||||||
bundler-cache: true
|
bundler-cache: true
|
||||||
- name: Run Minitest based tests
|
- name: Run Minitest based tests
|
||||||
run: bash script/test
|
run: bash script/test
|
||||||
|
@ -63,6 +64,7 @@ jobs:
|
||||||
uses: ruby/setup-ruby@v1
|
uses: ruby/setup-ruby@v1
|
||||||
with:
|
with:
|
||||||
ruby-version: ${{ matrix.ruby_version }}
|
ruby-version: ${{ matrix.ruby_version }}
|
||||||
|
bundler: "2.2.31"
|
||||||
bundler-cache: true
|
bundler-cache: true
|
||||||
- name: ${{ matrix.step_name }}
|
- name: ${{ matrix.step_name }}
|
||||||
run: bash script/${{ matrix.script_file }}
|
run: bash script/${{ matrix.script_file }}
|
||||||
|
|
Loading…
Reference in New Issue