Skip to content

Commit 3e0ae09

Browse files
committed
Set bundler to 2.7.2
1 parent 8b65dbf commit 3e0ae09

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/ruby.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ jobs:
1414
matrix:
1515
rails_version: [8.0.1]
1616
ruby: ["3.4"]
17+
bundler_version: ["2.7.2"]
1718
additional_engine_cart_rails_options: [""]
1819
additional_name: [""]
1920
include:
@@ -25,12 +26,13 @@ jobs:
2526
RAILS_VERSION: ${{ matrix.rails_version }}
2627
ENGINE_CART_RAILS_OPTIONS: "--skip-git --skip-listen --skip-spring --skip-keeps --skip-kamal --skip-solid --skip-coffee --skip-test --css bootstrap -a propshaft -j importmap ${{ matrix.additional_engine_cart_rails_options }}"
2728
BLACKLIGHT_VERSION: ${{ matrix.blacklight_version }}
29+
BUNDLER_VERSION: ${{ matrix.bundler_version || '2.7.2' }}
2830
steps:
2931
- uses: actions/checkout@v4
3032
- name: Set up Ruby ${{ matrix.ruby }}
3133
uses: ruby/setup-ruby@v1
3234
with:
33-
bundler: latest
35+
bundler: ${{ matrix.bundler_version || '2.7.2' }}
3436
ruby-version: ${{ matrix.ruby }}
3537
- name: Install dependencies with Rails ${{ matrix.rails_version }}
3638
run: bundle install
@@ -44,7 +46,7 @@ jobs:
4446
- name: Install Ruby and gems
4547
uses: ruby/setup-ruby@v1
4648
with:
47-
bundler: latest
49+
bundler: ${{ matrix.bundler_version || '2.7.2' }}
4850
ruby-version: 3.2
4951
- name: Install dependencies with Bundler
5052
run: bundle install

0 commit comments

Comments
 (0)