Skip to content

Commit ae14d4c

Browse files
authored
Disable Ruby updates by Renovate and revert to Ruby v3 (#745)
Ruby version upgrades should be performed manually. Updating Ruby requires changes to the CI configuration, and language versions do not necessarily follow semantic versioning. Since Ruby v4 has not been sufficiently validated yet, we will revert to v3 for now.
1 parent ba2324b commit ae14d4c

3 files changed

Lines changed: 10 additions & 2 deletions

File tree

.github/workflows/deploy-doc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
2020
- uses: ruby/setup-ruby@708024e6c902387ab41de36e1669e43b5ee7085e # v1.283.0
2121
with:
22-
ruby-version: '4.0.1'
22+
ruby-version: '3.4.8'
2323
- run: bundle install
2424
- name: Setup Pages
2525
uses: actions/configure-pages@983d7736d9b0ae728b81ab479565c72886d7745b # v5.0.0

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- uses: ruby/setup-ruby@708024e6c902387ab41de36e1669e43b5ee7085e # v1.283.0
2424
with:
2525
bundler-cache: true
26-
ruby-version: 4.0.1
26+
ruby-version: 3.4.8
2727
- name: Update version file with the release version
2828
run: |
2929
if [ "${{ github.event_name }}" == "workflow_dispatch" ]; then

renovate.json5

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,13 @@
3232
'/line-openapi/',
3333
],
3434
},
35+
{
36+
// Disable automatic Ruby version updates
37+
// Language version updates should be handled manually
38+
matchPackageNames: [
39+
'ruby',
40+
],
41+
enabled: false,
42+
},
3543
],
3644
}

0 commit comments

Comments
 (0)