Skip to content

Commit f25d32c

Browse files
committed
Switch to Ruby 3.3 for GitHub Actions
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.
1 parent 08c0261 commit f25d32c

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/component_diff_check.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Install ruby version ${{ matrix.cfg.ruby }}
2020
uses: ruby/setup-ruby@v1
2121
with:
22-
ruby-version: 3.2
22+
ruby-version: 3.3
2323

2424
- name: Bundle project
2525
run: |

.github/workflows/mend.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Setup Ruby
1616
uses: ruby/setup-ruby@v1
1717
with:
18-
ruby-version: 3.2
18+
ruby-version: 3.3
1919
- name: Create lock
2020
run: bundle lock
2121
- uses: actions/setup-java@v3

.github/workflows/runtime_tests.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ jobs:
1818
uses: actions/checkout@v4
1919
with:
2020
fetch-depth: 0
21-
- name: Install Ruby version 3.2
21+
- name: Install Ruby version 3.3
2222
uses: ruby/setup-ruby@v1
2323
with:
24-
ruby-version: 3.2
24+
ruby-version: 3.3
2525
- name: Update rubygems and install gems
2626
run: |
2727
gem update --system --silent --no-document

0 commit comments

Comments
 (0)