|
77 | 77 | { |
78 | 78 | "customType": "regex", |
79 | 79 | "description": "Track Docker base images in Dockerfiles", |
80 | | - "fileMatch": ["(^|/)Dockerfile[^/]*$"], |
| 80 | + "managerFilePatterns": [ |
| 81 | + "/(^|/)Dockerfile[^/]*$/" |
| 82 | + ], |
81 | 83 | "matchStrings": [ |
82 | 84 | "FROM\\s+(?<depName>bellsoft/liberica-openjre-debian):(?<currentValue>[^\\s]+)", |
83 | 85 | "FROM\\s+(?<depName>eclipse-temurin):(?<currentValue>[^\\s]+)" |
|
87 | 89 | { |
88 | 90 | "customType": "regex", |
89 | 91 | "description": "Track runtime versions in GitHub Actions", |
90 | | - "fileMatch": ["^\\.github/workflows/[^/]+\\.ya?ml$"], |
| 92 | + "managerFilePatterns": [ |
| 93 | + "/^\\.github/workflows/[^/]+\\.ya?ml$/" |
| 94 | + ], |
91 | 95 | "matchStrings": [ |
92 | 96 | "node-version:\\s*['\"]?(?<currentValue>[^'\"\\s]+)['\"]?", |
93 | 97 | "python-version:\\s*['\"]?(?<currentValue>[^'\"\\s]+)['\"]?", |
|
156 | 160 | }, |
157 | 161 | { |
158 | 162 | "groupName": "GitHub Actions", |
159 | | - "matchDatasources": ["github-tags"], |
| 163 | + "matchDatasources": [ |
| 164 | + "github-tags" |
| 165 | + ], |
160 | 166 | "matchPackageNames": [ |
161 | | - "/^actions\//" |
| 167 | + "/^actions//" |
162 | 168 | ] |
163 | 169 | }, |
164 | 170 | { |
165 | 171 | "groupName": "Docker Actions", |
166 | | - "matchDatasources": ["github-tags"], |
| 172 | + "matchDatasources": [ |
| 173 | + "github-tags" |
| 174 | + ], |
167 | 175 | "matchPackageNames": [ |
168 | | - "/^docker\//" |
| 176 | + "/^docker//" |
169 | 177 | ] |
170 | 178 | }, |
171 | 179 | { |
172 | 180 | "groupName": "Java Runtime Images", |
173 | | - "matchDatasources": ["docker"], |
| 181 | + "matchDatasources": [ |
| 182 | + "docker" |
| 183 | + ], |
174 | 184 | "matchPackageNames": [ |
175 | 185 | "bellsoft/liberica-openjre-debian", |
176 | 186 | "eclipse-temurin" |
177 | 187 | ] |
178 | 188 | }, |
179 | 189 | { |
180 | 190 | "groupName": "Runtime Versions", |
181 | | - "schedule": ["before 6am on the first day of the month"], |
| 191 | + "schedule": [ |
| 192 | + "before 6am on the first day of the month" |
| 193 | + ], |
182 | 194 | "matchPackageNames": [ |
183 | 195 | "node", |
184 | 196 | "python", |
|
189 | 201 | "groupName": "Frontend Dependencies", |
190 | 202 | "matchPackageNames": [ |
191 | 203 | "/^playwright/", |
192 | | - "/^@babel\//" |
| 204 | + "/^@babel//" |
193 | 205 | ] |
194 | 206 | } |
195 | 207 | ] |
|
0 commit comments