Skip to content

Commit

Permalink
Drop support for ruby 2.7, 3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
andrcuns committed Jun 9, 2024
1 parent d98c1b2 commit c3b4722
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby-version: ["3.2", "3.1", "3.0"]
ruby-version: ["3.3", "3.2", "3.1"]
sidekiq-version: ["~> 6.5", "~> 7"]
with-rackup: [true, false]
# Service containers to run with `runner-job`
Expand Down
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ inherit_gem:
rubocop-shopify: rubocop.yml

AllCops:
TargetRubyVersion: 2.7
TargetRubyVersion: 3.1
SuggestExtensions: false
NewCops: enable

Expand Down
2 changes: 1 addition & 1 deletion sidekiq_alive.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Gem::Specification.new do |spec|

spec.version = SidekiqAlive::VERSION

spec.required_ruby_version = Gem::Requirement.new(">= 2.7.0")
spec.required_ruby_version = Gem::Requirement.new(">= 3.1")

spec.homepage = "https://github.com/arturictus/sidekiq_alive"
spec.summary = "Liveness probe for sidekiq on Kubernetes deployments."
Expand Down

0 comments on commit c3b4722

Please sign in to comment.