Skip to content

Commit 2d2f666

Browse files
committed
Update Ruby version to 3.4.1
1 parent 93a1403 commit 2d2f666

File tree

4 files changed

+18
-19
lines changed

4 files changed

+18
-19
lines changed

.github/workflows/ruby-lint.yml

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -22,17 +22,13 @@ jobs:
2222
runs-on: ubuntu-latest
2323
strategy:
2424
matrix:
25-
ruby-version: ['3.2.2']
25+
ruby-version: ['3.4.1']
2626

2727
steps:
2828
- uses: actions/checkout@v4
29-
- name: Set up Ruby
30-
# To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
31-
# change this to (see https://github.com/ruby/setup-ruby#versioning):
32-
# uses: ruby/setup-ruby@v1
33-
uses: ruby/setup-ruby@55283cc23133118229fd3f97f9336ee23a179fcf # v1.146.0
34-
with:
35-
ruby-version: ${{ matrix.ruby-version }}
36-
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
29+
- name: Setup Ruby
30+
uses: ruby/setup-ruby@v1
31+
with:
32+
ruby-version: 3.4.1
3733
- name: Run cops
3834
run: bundle exec rubocop

.ruby-gemset

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
cleo-katas

.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.1

Gemfile.lock

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,30 +2,32 @@ GEM
22
remote: https://rubygems.org/
33
specs:
44
ast (2.4.2)
5-
json (2.8.1)
5+
json (2.9.1)
66
language_server-protocol (3.17.0.3)
77
parallel (1.26.3)
88
parser (3.3.6.0)
99
ast (~> 2.4.1)
1010
racc
1111
racc (1.8.1)
1212
rainbow (3.1.1)
13-
regexp_parser (2.9.2)
14-
rubocop (1.68.0)
13+
regexp_parser (2.10.0)
14+
rubocop (1.70.0)
1515
json (~> 2.3)
1616
language_server-protocol (>= 3.17.0)
1717
parallel (~> 1.10)
1818
parser (>= 3.3.0.2)
1919
rainbow (>= 2.2.2, < 4.0)
20-
regexp_parser (>= 2.4, < 3.0)
21-
rubocop-ast (>= 1.32.2, < 2.0)
20+
regexp_parser (>= 2.9.3, < 3.0)
21+
rubocop-ast (>= 1.36.2, < 2.0)
2222
ruby-progressbar (~> 1.7)
23-
unicode-display_width (>= 2.4.0, < 3.0)
24-
rubocop-ast (1.35.0)
23+
unicode-display_width (>= 2.4.0, < 4.0)
24+
rubocop-ast (1.37.0)
2525
parser (>= 3.3.1.0)
2626
ruby-progressbar (1.13.0)
2727
thor (1.3.2)
28-
unicode-display_width (2.6.0)
28+
unicode-display_width (3.1.3)
29+
unicode-emoji (~> 4.0, >= 4.0.4)
30+
unicode-emoji (4.0.4)
2931

3032
PLATFORMS
3133
ruby
@@ -36,7 +38,7 @@ DEPENDENCIES
3638
thor (~> 1.3)
3739

3840
RUBY VERSION
39-
ruby 3.2.2p53
41+
ruby 3.4.1p0
4042

4143
BUNDLED WITH
4244
2.5.16

0 commit comments

Comments
 (0)