Skip to content
This repository has been archived by the owner on May 3, 2024. It is now read-only.

Commit

Permalink
Update supported ruby versions
Browse files Browse the repository at this point in the history
  • Loading branch information
kachick committed Jan 10, 2024
1 parent c098ba4 commit ef7f177
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
matrix:
os: [ubuntu-latest]
# The use of the quoted string is due to https://github.com/actions/runner/issues/849
ruby: ['head', '3.2', '3.1']
ruby: ['head', '3.3', '3.2']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ require:
- rubocop-thread_safety

AllCops:
TargetRubyVersion: 3.1
TargetRubyVersion: 3.2
DisplayCopNames: true
Exclude:
- '**/vendor/**/*'
Expand Down
2 changes: 1 addition & 1 deletion my_new_library.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Gem::Specification.new do |gem|
'rubygems_mfa_required' => 'true'
}

gem.required_ruby_version = Gem::Requirement.new('>= 3.1')
gem.required_ruby_version = Gem::Requirement.new('>= 3.2')

# common

Expand Down

0 comments on commit ef7f177

Please sign in to comment.