Skip to content

Commit

Permalink
ci: fix sqlite version
Browse files Browse the repository at this point in the history
  • Loading branch information
palkan committed Apr 18, 2024
1 parent 4a98d2a commit bc4651a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion gemfiles/rails6.gemfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
source "https://rubygems.org"

gem "rails", "~> 6.0"
gem "sqlite3"
gem "sqlite3", "~> 1.4"
gem "pg"
gem "mysql2"

Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails7.gemfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
source "https://rubygems.org"

gem "rails", "~> 7.0"
gem "sqlite3"
gem "sqlite3", "~> 1.4"
gem "pg"
gem "mysql2"

Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails70.gemfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
source "https://rubygems.org"

gem "rails", "~> 7.0.0"
gem "sqlite3"
gem "sqlite3", "~> 1.4"
gem "pg"
gem "mysql2"

Expand Down
2 changes: 1 addition & 1 deletion gemfiles/railsmaster.gemfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
source "https://rubygems.org"

gem "rails", github: "rails/rails"
gem "sqlite3"
gem "sqlite3", "~> 1.4"
gem "pg"
gem "mysql2"

Expand Down

0 comments on commit bc4651a

Please sign in to comment.