Skip to content

Commit

Permalink
Set max Rails version to 7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
eliotjordan committed Aug 13, 2024
1 parent 6c61da8 commit cd5a194
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
bundler_version: [2.1.1]
faraday_version: ['~> 1.0']
bundler_version: [2.2.8]
faraday_version: ['~> 2.0']
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7
ruby-version: 3.3.1
- name: Install bundler
run: gem install bundler -v ${{ matrix.bundler_version }}
- name: Install dependencies
Expand All @@ -33,10 +33,10 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
ruby_version: ["3.0","2.7"]
rails_version: [7.1.3.4, 7.0.4.2, 6.1.7.2]
bundler_version: [2.1.1]
faraday_version: 7.2.0, ['~> 1.0']
ruby_version: [3.3.1]
rails_version: [7.2.0, 7.1.3.2, 7.0.8.1]
bundler_version: [2.2.8]
faraday_version: ['~> 2.0']

name: test ruby ${{ matrix.ruby_version }} / rails ${{ matrix.rails_version }} / faraday ${{ matrix.faraday_version }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ if File.exist?(file)
end
else
Bundler.ui.warn "[EngineCart] Unable to find test application dependencies in #{file}, using placeholder dependencies"
gem "geoblacklight", ">= 2.0"
gem "geoblacklight", ">= 3.8"
gem "mini_magick", "~> 4.9.4"
gem "image_processing", "~> 1.6"
gem "statesman", ">= 3.4"
Expand Down
4 changes: 2 additions & 2 deletions geoblacklight_sidecar_images.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ Gem::Specification.new do |s|
s.require_paths = ["lib"]

s.add_dependency "faraday", ">= 1.0"
s.add_dependency "geoblacklight", "~> 3.3"
s.add_dependency "geoblacklight", "~> 3.8.1"
s.add_dependency "image_processing", "~> 1.6"
s.add_dependency "mimemagic", "~> 0.3"
s.add_dependency "mini_magick", "~> 4.9.4"
s.add_dependency "rails", ">= 5.2", "< 7.2"
s.add_dependency "rails", ">= 5.2", "< 7.3"
s.add_dependency "statesman", ">= 3.4"

s.add_development_dependency "byebug"
Expand Down

0 comments on commit cd5a194

Please sign in to comment.