Skip to content

Commit

Permalink
Switch to Ruby 3.3 for GitHub Actions
Browse files Browse the repository at this point in the history
This commit updates Ruby from 3.2 to 3.3 in our GitHub Actions. The
latest Ubuntu 22.04 runner image from GitHub has started causing errors
in our builds, possibly due to the new inclusion of Ruby 3.2 in the base
image.
  • Loading branch information
mhashizume committed Jul 10, 2024
1 parent 08c0261 commit f25d32c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/component_diff_check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Install ruby version ${{ matrix.cfg.ruby }}
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2
ruby-version: 3.3

- name: Bundle project
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mend.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2
ruby-version: 3.3
- name: Create lock
run: bundle lock
- uses: actions/setup-java@v3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/runtime_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ jobs:
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install Ruby version 3.2
- name: Install Ruby version 3.3
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2
ruby-version: 3.3
- name: Update rubygems and install gems
run: |
gem update --system --silent --no-document
Expand Down

0 comments on commit f25d32c

Please sign in to comment.