Skip to content

Commit

Permalink
Merge pull request #3159 from AlchemyCMS/backport/7.4-stable/pr-3154
Browse files Browse the repository at this point in the history
[7.4-stable] fix missing logger issue in github actions
  • Loading branch information
tvdeyen authored Jan 23, 2025
2 parents 7d3128b + f921946 commit e382c37
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,13 @@ group :development, :test do
if rails_version == "7.1"
gem "actioncable", "~> #{rails_version}.0"
end

# concurrent-ruby v1.3.5 has removed the dependency on logger,
# effecting Rails 6.1 up to including 7.0.
# https://github.com/rails/rails/pull/54264
if ("6.1".to_f.."7.0".to_f).cover?(rails_version.to_f)
gem "concurrent-ruby", "< 1.3.5"
end
else
gem "launchy"
gem "annotate"
Expand Down

0 comments on commit e382c37

Please sign in to comment.