Skip to content

Commit fd47403

Browse files
authored
Require Ruby >= 3.3 and update CI Ruby versions (#72)
* Require Ruby >= 3.3 and update CI Ruby versions * Bump bundler to 4.0.15
1 parent 4173d5f commit fd47403

5 files changed

Lines changed: 9 additions & 7 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ jobs:
1212
strategy:
1313
matrix:
1414
ruby:
15-
- 3.2
1615
- 3.3
1716
- 3.4
17+
- '4.0'
1818
env:
1919
BUNDLE_GEMFILE: Gemfile
2020
name: "Run tests: Ruby ${{ matrix.ruby }}"

.rubocop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ plugins:
33
- rubocop-performance
44

55
AllCops:
6-
TargetRubyVersion: 3.1
6+
TargetRubyVersion: 3.3
77
NewCops: enable
88
Exclude:
99
- bin/**/*

.ruby-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.2.2
1+
3.4.9

Gemfile.lock

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,9 @@ GEM
142142
crass (~> 1.0.2)
143143
nokogiri (>= 1.12.0)
144144
method_source (1.1.0)
145-
minitest (5.25.5)
145+
minitest (6.0.6)
146+
drb (~> 2.0)
147+
prism (~> 1.5)
146148
nap (1.1.0)
147149
net-http (0.6.0)
148150
uri
@@ -187,7 +189,7 @@ GEM
187189
pp (0.6.2)
188190
prettyprint
189191
prettyprint (0.2.0)
190-
prism (1.4.0)
192+
prism (1.9.0)
191193
pry (0.15.2)
192194
coderay (~> 1.1)
193195
method_source (~> 1.0)
@@ -351,4 +353,4 @@ DEPENDENCIES
351353
tapioca
352354

353355
BUNDLED WITH
354-
2.6.6
356+
4.0.15

danger-packwerk.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Gem::Specification.new do |spec|
2727

2828
spec.files = Dir['README.md', 'lib/**/*']
2929
spec.require_paths = ['lib']
30-
spec.required_ruby_version = '>= 3.1'
30+
spec.required_ruby_version = '>= 3.3'
3131

3232
spec.add_dependency 'code_ownership'
3333
spec.add_dependency 'danger-plugin-api', '~> 1.0'

0 commit comments

Comments
 (0)