Skip to content

Commit cbeafdf

Browse files
authored
Merge pull request rails#50625 from akhilgkrishnan/bump-ruby-3-3-to-workflow
Use Ruby 3.3 for github workflows
2 parents 7f34113 + b417402 commit cbeafdf

File tree

4 files changed

+10
-8
lines changed

4 files changed

+10
-8
lines changed

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414
steps:
1515
- uses: actions/checkout@v4
1616

17-
- name: Set up Ruby 3.2
17+
- name: Set up Ruby 3.3
1818
uses: ruby/setup-ruby@v1
1919
with:
20-
ruby-version: 3.2
20+
ruby-version: 3.3
2121
bundler-cache: true
2222

2323
- name: mdl

.github/workflows/rail_inspector.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,9 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- uses: actions/checkout@v4
20-
- uses: ruby/setup-ruby@v1
20+
- name: Set up Ruby 3.3
21+
uses: ruby/setup-ruby@v1
2122
with:
22-
ruby-version: 3.2
23+
ruby-version: 3.3
2324
bundler-cache: true
2425
- run: cd tools/rail_inspector && bundle exec rake

.github/workflows/rails-new-docker.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,10 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- uses: actions/checkout@v4
18-
- uses: ruby/setup-ruby@v1
18+
- name: Set up Ruby 3.3
19+
uses: ruby/setup-ruby@v1
1920
with:
20-
ruby-version: '3.2'
21+
ruby-version: 3.3
2122
bundler-cache: true
2223
- name: Generate --dev app
2324
run: |

.github/workflows/rubocop.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414
steps:
1515
- uses: actions/checkout@v4
1616

17-
- name: Set up Ruby 3.2
17+
- name: Set up Ruby 3.3
1818
uses: ruby/setup-ruby@v1
1919
with:
20-
ruby-version: 3.2
20+
ruby-version: 3.3
2121
bundler-cache: true
2222

2323
- name: Run RuboCop

0 commit comments

Comments
 (0)