-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrenovate.json5
26 lines (26 loc) · 1.04 KB
/
renovate.json5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": ["github>ministryofjustice/hmpps-renovate-config:base"],
"packageRules": [
{
"matchManagers": ["npm"],
"matchUpdateTypes": ["minor", "patch"],
"groupName": "minor npm dependencies",
"groupSlug": "all-npm-minor-patch"
},
{
"matchPackageNames": ["node", "cimg/node"],
"allowedVersions": "<=16"
},
{
// match to production redis version in https://github.com/ministryofjustice/cloud-platform-environments/blob/main/namespaces/live.cloud-platform.service.justice.gov.uk/hmpps-interventions-prod/resources/elasticache.tf
"matchPackageNames": ["bitnami/redis"],
"allowedVersions": "<=6"
},
{
// match to production postgres version in https://github.com/ministryofjustice/cloud-platform-environments/blob/main/namespaces/live.cloud-platform.service.justice.gov.uk/hmpps-interventions-prod/resources/rds-postgres14.tf
"matchPackageNames": ["postgres"],
"allowedVersions": "<=14"
},
]
}