Skip to content

Commit

Permalink
Use Ruby 3.3 for github workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
akhilgkrishnan committed Jan 7, 2024
1 parent ecb1d66 commit b417402
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Expand Up @@ -14,10 +14,10 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Set up Ruby 3.2
- name: Set up Ruby 3.3
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2
ruby-version: 3.3
bundler-cache: true

- name: mdl
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/rail_inspector.yml
Expand Up @@ -17,8 +17,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
- name: Set up Ruby 3.3
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2
ruby-version: 3.3
bundler-cache: true
- run: cd tools/rail_inspector && bundle exec rake
5 changes: 3 additions & 2 deletions .github/workflows/rails-new-docker.yml
Expand Up @@ -15,9 +15,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
- name: Set up Ruby 3.3
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.2'
ruby-version: 3.3
bundler-cache: true
- name: Generate --dev app
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/rubocop.yml
Expand Up @@ -14,10 +14,10 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Set up Ruby 3.2
- name: Set up Ruby 3.3
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2
ruby-version: 3.3
bundler-cache: true

- name: Run RuboCop
Expand Down

0 comments on commit b417402

Please sign in to comment.