Skip to content

Commit 1ec1f24

Browse files
committed
Restrict ruby and rails upgrades
Why are these changes being introduced: * Ruby and Rails should keep versions in line with recommendations * This pins Ruby to version 3.4.x and Rails to 7.2x * When we upgrade to Rails 8 we adjust
1 parent 89de477 commit 1ec1f24

1 file changed

Lines changed: 15 additions & 1 deletion

File tree

renovate.json

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,20 @@
11
{
22
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
33
"extends": [
4-
"github>MITLibraries/renovate-config:renovate-ruby"
4+
"local>MITLibraries/renovate-config:renovate-ruby"
5+
],
6+
"packageRules": [
7+
{
8+
"matchPackageNames": [
9+
"ruby"
10+
],
11+
"allowedVersions": "<3.5"
12+
},
13+
{
14+
"matchPackageNames": [
15+
"rails"
16+
],
17+
"allowedVersions": "<8"
18+
}
519
]
620
}

0 commit comments

Comments
 (0)