Skip to content

Commit

Permalink
Ensure correct rails version in CI (#6)
Browse files Browse the repository at this point in the history
The minor version was floating for 7.0 to 7.1. If/when 7.2 is released
both 7.0 and 7.1 would instead be testing 7.2.

Co-authored-by: Tate Thurston <[email protected]>
  • Loading branch information
tatthurs and Tate Thurston authored Jul 16, 2024
1 parent c04f59d commit 0b74118
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ jobs:
fail-fast: false
matrix:
ruby:
- "2.7"
- "3.0"
- "3.1"
- "3.2"
Expand All @@ -32,7 +31,7 @@ jobs:
env:
BUNDLE_GEMFILE: gemfiles/rails_${{ matrix.rails }}.gemfile
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails_6.1.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

source "https://rubygems.org"

gem "activemodel", "~> 6.1"
gem "activemodel", "~> 6.1.7"

# pull the ART19 patched version of cassandra-driver
source 'https://rubygems.pkg.github.com/art19' do
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails_7.0.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

source "https://rubygems.org"

gem "activemodel", "~> 7.0"
gem "activemodel", "~> 7.0.8"

# pull the ART19 patched version of cassandra-driver
source 'https://rubygems.pkg.github.com/art19' do
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails_7.1.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

source "https://rubygems.org"

gem "activemodel", "~> 7.1"
gem "activemodel", "~> 7.1.3"

# pull the ART19 patched version of cassandra-driver
source 'https://rubygems.pkg.github.com/art19' do
Expand Down

0 comments on commit 0b74118

Please sign in to comment.