Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[pull] develop from ohler55:develop #124

Merged
merged 1 commit into from
Dec 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
CI: Add Rails 8 and drop Rails 6.1 (ohler55#947)
* CI: Add Rails 8

* CI: Drop Rails 6.1

Because Rails 6.1 has reached End of Maintenance
https://rubyonrails.org/2024/10/15/new-maintenance-policy-and-eol-annouments
  • Loading branch information
Watson1978 authored Dec 29, 2024
commit 04b612b582f0370343629abc62aced22c204fab6
16 changes: 7 additions & 9 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,34 +28,32 @@ jobs:
- windows
gemfile:
- no_rails
- rails_6.1
- rails_7
- rails_7.1
- rails_7.2
- rails_8
exclude:
- ruby: 2.7
gemfile: rails_7.2
- ruby: 3.0
gemfile: rails_7.2
- ruby: 2.7
gemfile: rails_8
- ruby: 3.0
gemfile: rails_8
- ruby: 3.1
gemfile: rails_8
- os: macos
ruby: head
- os: windows
ruby: head
- os: windows
gemfile: rails_6.1
- os: windows
gemfile: rails_7
- os: windows
gemfile: rails_7.1
- os: windows
gemfile: rails_7.2
include:
- ruby: '2.7'
gemfile: rails_6 # End of life June 1, 2023
os: ubuntu
- ruby: '2.7'
gemfile: rails_6 # End of life June 1, 2023
os: macos
# - ruby: 'truffleruby'
# gemfile: no_rails
# os: ubuntu
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/rails_6.1.gemfile → gemfiles/rails_8.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

source 'https://rubygems.org'

gem 'rails', '6.1.3.1'
gem 'rails', '~> 8.0.1'
gem 'sqlite3'
gem 'mutex_m'
gem 'base64'
Expand Down
Loading