|
73 | 73 | "LBC_VERSION=\"(?<currentValue>.*?)\"" |
74 | 74 | ], |
75 | 75 | "datasourceTemplate": "github-releases" |
| 76 | + }, |
| 77 | + { |
| 78 | + "customType": "regex", |
| 79 | + "description": "Track Docker base images in Dockerfiles", |
| 80 | + "fileMatch": ["(^|/)Dockerfile[^/]*$"], |
| 81 | + "matchStrings": [ |
| 82 | + "FROM\\s+(?<depName>bellsoft/liberica-openjre-debian):(?<currentValue>[^\\s]+)", |
| 83 | + "FROM\\s+(?<depName>eclipse-temurin):(?<currentValue>[^\\s]+)" |
| 84 | + ], |
| 85 | + "datasourceTemplate": "docker" |
| 86 | + }, |
| 87 | + { |
| 88 | + "customType": "regex", |
| 89 | + "description": "Track runtime versions in GitHub Actions", |
| 90 | + "fileMatch": ["^\\.github/workflows/[^/]+\\.ya?ml$"], |
| 91 | + "matchStrings": [ |
| 92 | + "node-version:\\s*['\"]?(?<currentValue>[^'\"\\s]+)['\"]?", |
| 93 | + "python-version:\\s*['\"]?(?<currentValue>[^'\"\\s]+)['\"]?", |
| 94 | + "java-version:\\s*['\"]?(?<currentValue>[^'\"\\s]+)['\"]?" |
| 95 | + ], |
| 96 | + "depNameTemplate": "node", |
| 97 | + "datasourceTemplate": "node-version" |
| 98 | + }, |
| 99 | + { |
| 100 | + "customType": "regex", |
| 101 | + "description": "Track jeroenwillemsen/wrongsecrets images in K8s manifests", |
| 102 | + "fileMatch": ["(^|/)k8s/.+\\.ya?ml$", "(^|/)[^/]*\\.ya?ml$"], |
| 103 | + "matchStrings": [ |
| 104 | + "image:\\s*['\"]?jeroenwillemsen/wrongsecrets:(?<currentValue>[^'\"\\s]+)['\"]?", |
| 105 | + "image:\\s*['\"]?jeroenwillemsen/wrongsecrets-challenge53:(?<currentValue>[^'\"\\s]+)['\"]?" |
| 106 | + ], |
| 107 | + "depNameTemplate": "jeroenwillemsen/wrongsecrets", |
| 108 | + "datasourceTemplate": "docker" |
76 | 109 | } |
77 | 110 | ], |
78 | 111 | "packageRules": [ |
|
131 | 164 | "/google/", |
132 | 165 | "/google-beta/" |
133 | 166 | ] |
| 167 | + }, |
| 168 | + { |
| 169 | + "groupName": "GitHub Actions", |
| 170 | + "matchDatasources": ["github-tags"], |
| 171 | + "matchPackageNames": [ |
| 172 | + "/^actions\//" |
| 173 | + ] |
| 174 | + }, |
| 175 | + { |
| 176 | + "groupName": "Docker Actions", |
| 177 | + "matchDatasources": ["github-tags"], |
| 178 | + "matchPackageNames": [ |
| 179 | + "/^docker\//" |
| 180 | + ] |
| 181 | + }, |
| 182 | + { |
| 183 | + "groupName": "Java Runtime Images", |
| 184 | + "matchDatasources": ["docker"], |
| 185 | + "matchPackageNames": [ |
| 186 | + "bellsoft/liberica-openjre-debian", |
| 187 | + "eclipse-temurin" |
| 188 | + ] |
| 189 | + }, |
| 190 | + { |
| 191 | + "groupName": "Runtime Versions", |
| 192 | + "schedule": ["before 6am on the first day of the month"], |
| 193 | + "matchPackageNames": [ |
| 194 | + "node", |
| 195 | + "python", |
| 196 | + "java" |
| 197 | + ] |
| 198 | + }, |
| 199 | + { |
| 200 | + "groupName": "Frontend Dependencies", |
| 201 | + "matchPackageNames": [ |
| 202 | + "/^playwright/", |
| 203 | + "/^@babel\//" |
| 204 | + ] |
134 | 205 | } |
135 | 206 | ] |
136 | 207 | } |
0 commit comments