-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrenovate.json
More file actions
632 lines (632 loc) · 26.8 KB
/
Copy pathrenovate.json
File metadata and controls
632 lines (632 loc) · 26.8 KB
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended",
"docker:pinDigests",
"helpers:pinGitHubActionDigests"
],
"timezone": "Etc/UTC",
"dependencyDashboardApproval": true,
"pre-commit": {
"enabled": true
},
"pip-compile": {
"managerFilePatterns": ["/^\\.github/lint-requirements\\.txt$/"]
},
"pip_requirements": {
"enabled": false
},
"schedule": ["before 6am on monday"],
"minimumReleaseAge": "3 days",
"labels": ["dependencies"],
"prHourlyLimit": 2,
"prConcurrentLimit": 5,
"dependencyDashboard": true,
"configMigration": true,
"packageRules": [
{
"description": "CMAKE_VERSION stays on the 3.31 line; cmake 4.x is a separate manual pin (CMAKE4_VERSION).",
"matchPackageNames": ["Kitware/CMake"],
"allowedVersions": "<4"
},
{
"description": "GHA actions: pin by SHA, tag comment auto-updated (pinGitHubActionDigests), grouped.",
"matchManagers": ["github-actions"],
"groupName": "github-actions",
"pinDigests": true
},
{
"description": "Base-image digest in the FROM of both Dockerfiles — keep the pinned sha256 current (ubuntu:24.04 minor patches).",
"matchManagers": ["dockerfile"],
"matchPackageNames": ["ubuntu"],
"groupName": "base-image ubuntu-24.04",
"pinDigests": true
},
{
"description": "The image IS ubuntu-24.04 by design — a new Ubuntu major is a new image, not a bump. Digest/patch updates of 24.04 stay enabled.",
"matchDepNames": ["ubuntu"],
"matchUpdateTypes": ["major"],
"enabled": false
},
{
"description": "mdformat major is plugin-blocked: mdformat-tables still requires mdformat<0.8, and Renovate does not manage additional_dependencies — bump the hook and its plugins together manually once they support 1.x.",
"matchDepNames": ["executablebooks/mdformat"],
"matchUpdateTypes": ["major"],
"enabled": false
},
{
"description": "Rust tracks the official runner image (parity contract), not upstream releases — no auto-PRs; approve from the Dependency Dashboard once actions/runner-images ships the new toolchain.",
"matchDepNames": ["rust-lang/rust"],
"dependencyDashboardApproval": true
},
{
"description": "NODE_MAJOR: LTS (even) majors only.",
"matchDepNames": ["node"],
"allowedVersions": "/^\\d*[02468]$/"
},
{
"description": "Baked Python/Go/Node/Ruby toolcache minors stay patch-current only; adding/dropping a minor is a deliberate Dockerfile change (new ARG + SHA256), not a Renovate bump.",
"matchDepNames": ["actions/python-versions", "go", "actions/node-versions", "ruby/ruby-builder"],
"matchUpdateTypes": ["minor", "major"],
"enabled": false
},
{
"description": "Helm stays on the 3.x line (parity with ubuntu-latest; v4 is a breaking major).",
"matchDepNames": ["helm/helm"],
"allowedVersions": "<4"
},
{
"description": "AWS CLI stays on v2.",
"matchDepNames": ["aws/aws-cli"],
"allowedVersions": ">=2 <3"
},
{
"description": "PHPUnit stays on the 8.x line (parity with ubuntu-latest).",
"matchDepNames": ["sebastianbergmann/phpunit"],
"allowedVersions": "<9"
}
],
"customManagers": [
{
"description": "ARG RUNNER_VERSION in both Dockerfiles → actions/runner releases (github-releases). NOTE: this manager does NOT bump RUNNER_SHA256 — re-verify the hash manually after a version bump.",
"customType": "regex",
"managerFilePatterns": ["/(^|/)Dockerfile$/"],
"matchStrings": [
"ARG RUNNER_VERSION=(?<currentValue>\\d+\\.\\d+\\.\\d+)"
],
"depNameTemplate": "actions/runner",
"datasourceTemplate": "github-releases",
"extractVersionTemplate": "^v(?<version>.+)$",
"versioningTemplate": "semver"
},
{
"description": "ARG NPM_VERSION in ubuntu-24.04/Dockerfile → the npm package (npm datasource).",
"customType": "regex",
"managerFilePatterns": ["/(^|/)Dockerfile$/"],
"matchStrings": [
"ARG NPM_VERSION=(?<currentValue>\\d+\\.\\d+\\.\\d+)"
],
"depNameTemplate": "npm",
"datasourceTemplate": "npm",
"versioningTemplate": "npm"
},
{
"description": "ARG NODE_MAJOR in ubuntu-24.04/Dockerfile → node major only (extractVersion strips minor.patch; allowedVersions in packageRules keeps it on even/LTS majors).",
"customType": "regex",
"managerFilePatterns": ["/(^|/)Dockerfile$/"],
"matchStrings": [
"ARG NODE_MAJOR=(?<currentValue>\\d+)"
],
"depNameTemplate": "node",
"datasourceTemplate": "node-version",
"extractVersionTemplate": "^(?<version>\\d+)",
"versioningTemplate": "loose"
},
{
"description": "ARG PYTHON_3xx (toolcache) → actions/python-versions releases (tag <version>-<build>; extractVersion strips the build id and skips pre-releases). Does NOT bump PYTHON_3xx_SHA256 — recompute manually on bump.",
"customType": "regex",
"managerFilePatterns": ["/(^|/)Dockerfile$/"],
"matchStrings": [
"ARG PYTHON_3\\d+=(?<currentValue>3\\.\\d+\\.\\d+)"
],
"depNameTemplate": "actions/python-versions",
"datasourceTemplate": "github-releases",
"extractVersionTemplate": "^(?<version>\\d+\\.\\d+\\.\\d+)-\\d+$",
"versioningTemplate": "python"
},
{
"description": "ARG GO_1xx (toolcache) → Go releases. Does NOT bump GO_1xx_SHA256 — recompute manually from go.dev/dl JSON on bump.",
"customType": "regex",
"managerFilePatterns": ["/(^|/)Dockerfile$/"],
"matchStrings": [
"ARG GO_1\\d+=(?<currentValue>1\\.\\d+\\.\\d+)"
],
"depNameTemplate": "go",
"datasourceTemplate": "golang-version",
"versioningTemplate": "semver"
},
{
"description": "ARG RUST_VERSION → rust-lang/rust releases. No hash recompute needed (RUSTUP_SHA256 is keyed by RUSTUP_VERSION, not the toolchain).",
"customType": "regex",
"managerFilePatterns": ["/(^|/)Dockerfile$/"],
"matchStrings": [
"ARG RUST_VERSION=(?<currentValue>\\d+\\.\\d+\\.\\d+)"
],
"depNameTemplate": "rust-lang/rust",
"datasourceTemplate": "github-releases",
"versioningTemplate": "semver"
},
{
"description": "ARG RUSTUP_VERSION → rust-lang/rustup tags (no GitHub releases upstream). Does NOT bump RUSTUP_SHA256 — recompute from <url>.sha256 on bump.",
"customType": "regex",
"managerFilePatterns": ["/(^|/)Dockerfile$/"],
"matchStrings": [
"ARG RUSTUP_VERSION=(?<currentValue>\\d+\\.\\d+\\.\\d+)"
],
"depNameTemplate": "rust-lang/rustup",
"datasourceTemplate": "github-tags",
"versioningTemplate": "semver"
},
{
"description": "Pinned tool images (dockle, dive) inside workflow run: blocks.",
"customType": "regex",
"managerFilePatterns": ["/^\\.github/workflows/.*\\.ya?ml$/"],
"matchStrings": [
"(?<depName>goodwithtech/dockle|wagoodman/dive):(?<currentValue>v[\\d.]+)@(?<currentDigest>sha256:[a-f0-9]{64})"
],
"datasourceTemplate": "docker",
"versioningTemplate": "docker"
},
{
"description": "ARG YQ_VERSION → mikefarah/yq. Does NOT bump YQ_SHA256 — recompute on bump.",
"customType": "regex",
"managerFilePatterns": ["/(^|/)Dockerfile$/"],
"matchStrings": ["ARG YQ_VERSION=(?<currentValue>\\d+\\.\\d+\\.\\d+)"],
"depNameTemplate": "mikefarah/yq",
"datasourceTemplate": "github-releases",
"extractVersionTemplate": "^v(?<version>.+)$",
"versioningTemplate": "semver"
},
{
"description": "ARG CMAKE_VERSION → Kitware/CMake. Does NOT bump CMAKE_SHA256.",
"customType": "regex",
"managerFilePatterns": ["/(^|/)Dockerfile$/"],
"matchStrings": ["ARG CMAKE_VERSION=(?<currentValue>\\d+\\.\\d+\\.\\d+)"],
"depNameTemplate": "Kitware/CMake",
"datasourceTemplate": "github-releases",
"extractVersionTemplate": "^v(?<version>.+)$",
"versioningTemplate": "semver"
},
{
"description": "ARG GITLFS_VERSION → git-lfs/git-lfs. Does NOT bump GITLFS_SHA256.",
"customType": "regex",
"managerFilePatterns": ["/(^|/)Dockerfile$/"],
"matchStrings": ["ARG GITLFS_VERSION=(?<currentValue>\\d+\\.\\d+\\.\\d+)"],
"depNameTemplate": "git-lfs/git-lfs",
"datasourceTemplate": "github-releases",
"extractVersionTemplate": "^v(?<version>.+)$",
"versioningTemplate": "semver"
},
{
"description": "ARG ZSTD_VERSION → facebook/zstd. Does NOT bump ZSTD_SHA256.",
"customType": "regex",
"managerFilePatterns": ["/(^|/)Dockerfile$/"],
"matchStrings": ["ARG ZSTD_VERSION=(?<currentValue>\\d+\\.\\d+\\.\\d+)"],
"depNameTemplate": "facebook/zstd",
"datasourceTemplate": "github-releases",
"extractVersionTemplate": "^v(?<version>.+)$",
"versioningTemplate": "semver"
},
{
"description": "ARG KUBECTL_VERSION → kubernetes/kubernetes.",
"customType": "regex",
"managerFilePatterns": ["/(^|/)Dockerfile$/"],
"matchStrings": ["ARG KUBECTL_VERSION=(?<currentValue>\\d+\\.\\d+\\.\\d+)"],
"depNameTemplate": "kubernetes/kubernetes",
"datasourceTemplate": "github-releases",
"extractVersionTemplate": "^v(?<version>.+)$",
"versioningTemplate": "semver"
},
{
"description": "ARG HELM_VERSION → helm/helm (pinned to 3.x via packageRules). Does NOT bump HELM_SHA256.",
"customType": "regex",
"managerFilePatterns": ["/(^|/)Dockerfile$/"],
"matchStrings": ["ARG HELM_VERSION=(?<currentValue>\\d+\\.\\d+\\.\\d+)"],
"depNameTemplate": "helm/helm",
"datasourceTemplate": "github-releases",
"extractVersionTemplate": "^v(?<version>.+)$",
"versioningTemplate": "semver"
},
{
"description": "ARG AWSCLI_VERSION → aws/aws-cli tags (pinned to v2 via packageRules). Does NOT bump AWSCLI_SHA256.",
"customType": "regex",
"managerFilePatterns": ["/(^|/)Dockerfile$/"],
"matchStrings": ["ARG AWSCLI_VERSION=(?<currentValue>\\d+\\.\\d+\\.\\d+)"],
"depNameTemplate": "aws/aws-cli",
"datasourceTemplate": "github-tags",
"versioningTemplate": "semver"
},
{
"description": "ARG SAM_VERSION → aws/aws-sam-cli. Does NOT bump SAM_SHA256.",
"customType": "regex",
"managerFilePatterns": ["/(^|/)Dockerfile$/"],
"matchStrings": ["ARG SAM_VERSION=(?<currentValue>\\d+\\.\\d+\\.\\d+)"],
"depNameTemplate": "aws/aws-sam-cli",
"datasourceTemplate": "github-releases",
"extractVersionTemplate": "^v(?<version>.+)$",
"versioningTemplate": "semver"
},
{
"description": "ARG GECKODRIVER_VERSION → mozilla/geckodriver. Does NOT bump GECKODRIVER_SHA256.",
"customType": "regex",
"managerFilePatterns": ["/(^|/)Dockerfile$/"],
"matchStrings": ["ARG GECKODRIVER_VERSION=(?<currentValue>\\d+\\.\\d+\\.\\d+)"],
"depNameTemplate": "mozilla/geckodriver",
"datasourceTemplate": "github-releases",
"extractVersionTemplate": "^v(?<version>.+)$",
"versioningTemplate": "semver"
},
{
"description": "ARG SELENIUM_VERSION → SeleniumHQ/selenium (tag selenium-x). Does NOT bump SELENIUM_SHA256.",
"customType": "regex",
"managerFilePatterns": ["/(^|/)Dockerfile$/"],
"matchStrings": ["ARG SELENIUM_VERSION=(?<currentValue>\\d+\\.\\d+\\.\\d+)"],
"depNameTemplate": "SeleniumHQ/selenium",
"datasourceTemplate": "github-releases",
"extractVersionTemplate": "^selenium-(?<version>.+)$",
"versioningTemplate": "semver"
},
{
"description": "ARG BAZELISK_VERSION → bazelbuild/bazelisk. Does NOT bump BAZELISK_SHA256.",
"customType": "regex",
"managerFilePatterns": ["/(^|/)Dockerfile$/"],
"matchStrings": ["ARG BAZELISK_VERSION=(?<currentValue>\\d+\\.\\d+\\.\\d+)"],
"depNameTemplate": "bazelbuild/bazelisk",
"datasourceTemplate": "github-releases",
"extractVersionTemplate": "^v(?<version>.+)$",
"versioningTemplate": "semver"
},
{
"description": "ARG KIND_VERSION → kubernetes-sigs/kind. Does NOT bump KIND_SHA256.",
"customType": "regex",
"managerFilePatterns": ["/(^|/)Dockerfile$/"],
"matchStrings": ["ARG KIND_VERSION=(?<currentValue>\\d+\\.\\d+\\.\\d+)"],
"depNameTemplate": "kubernetes-sigs/kind",
"datasourceTemplate": "github-releases",
"extractVersionTemplate": "^v(?<version>.+)$",
"versioningTemplate": "semver"
},
{
"description": "ARG MINIKUBE_VERSION → kubernetes/minikube. Does NOT bump MINIKUBE_SHA256.",
"customType": "regex",
"managerFilePatterns": ["/(^|/)Dockerfile$/"],
"matchStrings": ["ARG MINIKUBE_VERSION=(?<currentValue>\\d+\\.\\d+\\.\\d+)"],
"depNameTemplate": "kubernetes/minikube",
"datasourceTemplate": "github-releases",
"extractVersionTemplate": "^v(?<version>.+)$",
"versioningTemplate": "semver"
},
{
"description": "ARG KUSTOMIZE_VERSION → kubernetes-sigs/kustomize (tag kustomize/vx). Does NOT bump KUSTOMIZE_SHA256.",
"customType": "regex",
"managerFilePatterns": ["/(^|/)Dockerfile$/"],
"matchStrings": ["ARG KUSTOMIZE_VERSION=(?<currentValue>\\d+\\.\\d+\\.\\d+)"],
"depNameTemplate": "kubernetes-sigs/kustomize",
"datasourceTemplate": "github-releases",
"extractVersionTemplate": "^kustomize/v(?<version>.+)$",
"versioningTemplate": "semver"
},
{
"description": "ARG PACKER_VERSION → hashicorp/packer. Does NOT bump PACKER_SHA256.",
"customType": "regex",
"managerFilePatterns": ["/(^|/)Dockerfile$/"],
"matchStrings": ["ARG PACKER_VERSION=(?<currentValue>\\d+\\.\\d+\\.\\d+)"],
"depNameTemplate": "hashicorp/packer",
"datasourceTemplate": "github-releases",
"extractVersionTemplate": "^v(?<version>.+)$",
"versioningTemplate": "semver"
},
{
"description": "ARG BICEP_VERSION → Azure/bicep. Does NOT bump BICEP_SHA256.",
"customType": "regex",
"managerFilePatterns": ["/(^|/)Dockerfile$/"],
"matchStrings": ["ARG BICEP_VERSION=(?<currentValue>\\d+\\.\\d+\\.\\d+)"],
"depNameTemplate": "Azure/bicep",
"datasourceTemplate": "github-releases",
"extractVersionTemplate": "^v(?<version>.+)$",
"versioningTemplate": "semver"
},
{
"description": "ARG AZCOPY_VERSION → Azure/azure-storage-azcopy. Does NOT bump AZCOPY_SHA256.",
"customType": "regex",
"managerFilePatterns": ["/(^|/)Dockerfile$/"],
"matchStrings": ["ARG AZCOPY_VERSION=(?<currentValue>\\d+\\.\\d+\\.\\d+)"],
"depNameTemplate": "Azure/azure-storage-azcopy",
"datasourceTemplate": "github-releases",
"extractVersionTemplate": "^v(?<version>.+)$",
"versioningTemplate": "semver"
},
{
"description": "ARG CODEQL_VERSION → github/codeql-action (tag codeql-bundle-vx). Does NOT bump CODEQL_SHA256.",
"customType": "regex",
"managerFilePatterns": ["/(^|/)Dockerfile$/"],
"matchStrings": ["ARG CODEQL_VERSION=(?<currentValue>\\d+\\.\\d+\\.\\d+)"],
"depNameTemplate": "github/codeql-action",
"datasourceTemplate": "github-releases",
"extractVersionTemplate": "^codeql-bundle-v(?<version>.+)$",
"versioningTemplate": "semver"
},
{
"description": "ARG PULUMI_VERSION → pulumi/pulumi. Does NOT bump PULUMI_SHA256.",
"customType": "regex",
"managerFilePatterns": ["/(^|/)Dockerfile$/"],
"matchStrings": ["ARG PULUMI_VERSION=(?<currentValue>\\d+\\.\\d+\\.\\d+)"],
"depNameTemplate": "pulumi/pulumi",
"datasourceTemplate": "github-releases",
"extractVersionTemplate": "^v(?<version>.+)$",
"versioningTemplate": "semver"
},
{
"description": "ARG OPENTOFU_VERSION → opentofu/opentofu. Does NOT bump OPENTOFU_SHA256.",
"customType": "regex",
"managerFilePatterns": ["/(^|/)Dockerfile$/"],
"matchStrings": ["ARG OPENTOFU_VERSION=(?<currentValue>\\d+\\.\\d+\\.\\d+)"],
"depNameTemplate": "opentofu/opentofu",
"datasourceTemplate": "github-releases",
"extractVersionTemplate": "^v(?<version>.+)$",
"versioningTemplate": "semver"
},
{
"description": "ARG NVM_VERSION → nvm-sh/nvm.",
"customType": "regex",
"managerFilePatterns": ["/(^|/)Dockerfile$/"],
"matchStrings": ["ARG NVM_VERSION=(?<currentValue>\\d+\\.\\d+\\.\\d+)"],
"depNameTemplate": "nvm-sh/nvm",
"datasourceTemplate": "github-releases",
"extractVersionTemplate": "^v(?<version>.+)$",
"versioningTemplate": "semver"
},
{
"description": "ARG COMPOSER_VERSION → composer/composer. Does NOT bump COMPOSER_SHA256.",
"customType": "regex",
"managerFilePatterns": ["/(^|/)Dockerfile$/"],
"matchStrings": ["ARG COMPOSER_VERSION=(?<currentValue>\\d+\\.\\d+\\.\\d+)"],
"depNameTemplate": "composer/composer",
"datasourceTemplate": "github-releases",
"versioningTemplate": "semver"
},
{
"description": "ARG PHPUNIT_VERSION → sebastianbergmann/phpunit (pinned to 8.x via packageRules). Does NOT bump PHPUNIT_SHA256.",
"customType": "regex",
"managerFilePatterns": ["/(^|/)Dockerfile$/"],
"matchStrings": ["ARG PHPUNIT_VERSION=(?<currentValue>\\d+\\.\\d+\\.\\d+)"],
"depNameTemplate": "sebastianbergmann/phpunit",
"datasourceTemplate": "github-releases",
"versioningTemplate": "semver"
},
{
"description": "ARG MAVEN_VERSION → apache/maven (tag maven-x). Does NOT bump MAVEN_SHA512.",
"customType": "regex",
"managerFilePatterns": ["/(^|/)Dockerfile$/"],
"matchStrings": ["ARG MAVEN_VERSION=(?<currentValue>\\d+\\.\\d+\\.\\d+)"],
"depNameTemplate": "apache/maven",
"datasourceTemplate": "github-tags",
"extractVersionTemplate": "^maven-(?<version>.+)$",
"versioningTemplate": "semver"
},
{
"description": "ARG GRADLE_VERSION → Gradle. Does NOT bump GRADLE_SHA256.",
"customType": "regex",
"managerFilePatterns": ["/(^|/)Dockerfile$/"],
"matchStrings": ["ARG GRADLE_VERSION=(?<currentValue>\\d+\\.\\d+\\.\\d+)"],
"depNameTemplate": "gradle",
"datasourceTemplate": "gradle-version",
"versioningTemplate": "semver"
},
{
"description": "ARG JULIA_VERSION → JuliaLang/julia. Does NOT bump JULIA_SHA256.",
"customType": "regex",
"managerFilePatterns": ["/(^|/)Dockerfile$/"],
"matchStrings": ["ARG JULIA_VERSION=(?<currentValue>\\d+\\.\\d+\\.\\d+)"],
"depNameTemplate": "JuliaLang/julia",
"datasourceTemplate": "github-releases",
"extractVersionTemplate": "^v(?<version>.+)$",
"versioningTemplate": "semver"
},
{
"description": "ARG KOTLIN_VERSION → JetBrains/kotlin. Does NOT bump KOTLIN_SHA256.",
"customType": "regex",
"managerFilePatterns": ["/(^|/)Dockerfile$/"],
"matchStrings": ["ARG KOTLIN_VERSION=(?<currentValue>\\d+\\.\\d+\\.\\d+)"],
"depNameTemplate": "JetBrains/kotlin",
"datasourceTemplate": "github-releases",
"extractVersionTemplate": "^v(?<version>.+)$",
"versioningTemplate": "semver"
},
{
"description": "ARG POWERSHELL_VERSION → PowerShell/PowerShell. Does NOT bump POWERSHELL_SHA256.",
"customType": "regex",
"managerFilePatterns": ["/(^|/)Dockerfile$/"],
"matchStrings": ["ARG POWERSHELL_VERSION=(?<currentValue>\\d+\\.\\d+\\.\\d+)"],
"depNameTemplate": "PowerShell/PowerShell",
"datasourceTemplate": "github-releases",
"extractVersionTemplate": "^v(?<version>.+)$",
"versioningTemplate": "semver"
},
{
"description": "ARG GHCUP_VERSION → haskell/ghcup-hs releases. Does NOT bump GHCUP_SHA256.",
"customType": "regex",
"managerFilePatterns": ["/(^|/)Dockerfile$/"],
"matchStrings": ["ARG GHCUP_VERSION=(?<currentValue>\\d+\\.\\d+\\.\\d+\\.\\d+)"],
"depNameTemplate": "haskell/ghcup-hs",
"datasourceTemplate": "github-releases",
"extractVersionTemplate": "^v(?<version>.+)$",
"versioningTemplate": "loose"
},
{
"description": "ARG SWIFT_VERSION → swiftlang/swift (tag swift-x-RELEASE). Does NOT bump SWIFT_SHA256.",
"customType": "regex",
"managerFilePatterns": ["/(^|/)Dockerfile$/"],
"matchStrings": ["ARG SWIFT_VERSION=(?<currentValue>\\d+\\.\\d+\\.\\d+)"],
"depNameTemplate": "swiftlang/swift",
"datasourceTemplate": "github-tags",
"extractVersionTemplate": "^swift-(?<version>.+)-RELEASE$",
"versioningTemplate": "semver"
},
{
"description": "ARG HOMEBREW_VERSION → Homebrew/brew.",
"customType": "regex",
"managerFilePatterns": ["/(^|/)Dockerfile$/"],
"matchStrings": ["ARG HOMEBREW_VERSION=(?<currentValue>\\d+\\.\\d+\\.\\d+)"],
"depNameTemplate": "Homebrew/brew",
"datasourceTemplate": "github-tags",
"versioningTemplate": "semver"
},
{
"description": "ARG VCPKG_VERSION → microsoft/vcpkg date-tagged releases.",
"customType": "regex",
"managerFilePatterns": ["/(^|/)Dockerfile$/"],
"matchStrings": ["ARG VCPKG_VERSION=(?<currentValue>\\d{4}\\.\\d{2}\\.\\d{2})"],
"depNameTemplate": "microsoft/vcpkg",
"datasourceTemplate": "github-tags",
"versioningTemplate": "loose"
},
{
"description": "ARG N_VERSION → npm 'n'.",
"customType": "regex",
"managerFilePatterns": ["/(^|/)Dockerfile$/"],
"matchStrings": ["ARG N_VERSION=(?<currentValue>\\d+\\.\\d+\\.\\d+)"],
"depNameTemplate": "n",
"datasourceTemplate": "npm",
"versioningTemplate": "npm"
},
{
"description": "ARG NEWMAN_VERSION → npm 'newman'.",
"customType": "regex",
"managerFilePatterns": ["/(^|/)Dockerfile$/"],
"matchStrings": ["ARG NEWMAN_VERSION=(?<currentValue>\\d+\\.\\d+\\.\\d+)"],
"depNameTemplate": "newman",
"datasourceTemplate": "npm",
"versioningTemplate": "npm"
},
{
"description": "ARG PARCEL_VERSION → npm 'parcel'.",
"customType": "regex",
"managerFilePatterns": ["/(^|/)Dockerfile$/"],
"matchStrings": ["ARG PARCEL_VERSION=(?<currentValue>\\d+\\.\\d+\\.\\d+)"],
"depNameTemplate": "parcel",
"datasourceTemplate": "npm",
"versioningTemplate": "npm"
},
{
"description": "ARG LERNA_VERSION → npm 'lerna'.",
"customType": "regex",
"managerFilePatterns": ["/(^|/)Dockerfile$/"],
"matchStrings": ["ARG LERNA_VERSION=(?<currentValue>\\d+\\.\\d+\\.\\d+)"],
"depNameTemplate": "lerna",
"datasourceTemplate": "npm",
"versioningTemplate": "npm"
},
{
"description": "ARG PIPX_VERSION → PyPI pipx.",
"customType": "regex",
"managerFilePatterns": ["/(^|/)Dockerfile$/"],
"matchStrings": ["ARG PIPX_VERSION=(?<currentValue>\\d+\\.\\d+\\.\\d+)"],
"depNameTemplate": "pipx",
"datasourceTemplate": "pypi",
"versioningTemplate": "pep440"
},
{
"description": "ARG FASTLANE_VERSION → RubyGems fastlane.",
"customType": "regex",
"managerFilePatterns": ["/(^|/)Dockerfile$/"],
"matchStrings": ["ARG FASTLANE_VERSION=(?<currentValue>\\d+\\.\\d+\\.\\d+)"],
"depNameTemplate": "fastlane",
"datasourceTemplate": "rubygems",
"versioningTemplate": "semver"
},
{
"description": "ARG NODE_TC_xx (toolcache) → actions/node-versions (tag <ver>-<build>); patch-only per packageRule. Does NOT bump NODE_TC_xx_SHA256 — recompute on bump.",
"customType": "regex",
"managerFilePatterns": ["/(^|/)Dockerfile$/"],
"matchStrings": ["ARG NODE_TC_\\d+=(?<currentValue>\\d+\\.\\d+\\.\\d+)"],
"depNameTemplate": "actions/node-versions",
"datasourceTemplate": "github-releases",
"extractVersionTemplate": "^(?<version>\\d+\\.\\d+\\.\\d+)-\\d+$",
"versioningTemplate": "semver"
},
{
"description": "ARG RUBY_xx (toolcache) → ruby/ruby-builder (tag ruby-<ver>); patch-only per packageRule. Does NOT bump RUBY_xx_SHA256 — recompute on bump.",
"customType": "regex",
"managerFilePatterns": ["/(^|/)Dockerfile$/"],
"matchStrings": ["ARG RUBY_\\d+=(?<currentValue>\\d+\\.\\d+\\.\\d+)"],
"depNameTemplate": "ruby/ruby-builder",
"datasourceTemplate": "github-releases",
"extractVersionTemplate": "^ruby-(?<version>\\d+\\.\\d+\\.\\d+)$",
"versioningTemplate": "semver"
},
{
"description": "ARG TYPESCRIPT_VERSION → npm 'typescript'.",
"customType": "regex",
"managerFilePatterns": ["/(^|/)Dockerfile$/"],
"matchStrings": ["ARG TYPESCRIPT_VERSION=(?<currentValue>\\d+\\.\\d+\\.\\d+)"],
"depNameTemplate": "typescript",
"datasourceTemplate": "npm",
"versioningTemplate": "npm"
},
{
"description": "ARG WEBPACK_VERSION → npm 'webpack'.",
"customType": "regex",
"managerFilePatterns": ["/(^|/)Dockerfile$/"],
"matchStrings": ["ARG WEBPACK_VERSION=(?<currentValue>\\d+\\.\\d+\\.\\d+)"],
"depNameTemplate": "webpack",
"datasourceTemplate": "npm",
"versioningTemplate": "npm"
},
{
"description": "ARG WEBPACK_CLI_VERSION → npm 'webpack-cli'.",
"customType": "regex",
"managerFilePatterns": ["/(^|/)Dockerfile$/"],
"matchStrings": ["ARG WEBPACK_CLI_VERSION=(?<currentValue>\\d+\\.\\d+\\.\\d+)"],
"depNameTemplate": "webpack-cli",
"datasourceTemplate": "npm",
"versioningTemplate": "npm"
},
{
"description": "ARG GRUNT_VERSION → npm 'grunt'.",
"customType": "regex",
"managerFilePatterns": ["/(^|/)Dockerfile$/"],
"matchStrings": ["ARG GRUNT_VERSION=(?<currentValue>\\d+\\.\\d+\\.\\d+)"],
"depNameTemplate": "grunt",
"datasourceTemplate": "npm",
"versioningTemplate": "npm"
},
{
"description": "ARG GULP_VERSION → npm 'gulp'.",
"customType": "regex",
"managerFilePatterns": ["/(^|/)Dockerfile$/"],
"matchStrings": ["ARG GULP_VERSION=(?<currentValue>\\d+\\.\\d+\\.\\d+)"],
"depNameTemplate": "gulp",
"datasourceTemplate": "npm",
"versioningTemplate": "npm"
},
{
"description": "ARG MULTIJSON_VERSION → RubyGems multi_json.",
"customType": "regex",
"managerFilePatterns": ["/(^|/)Dockerfile$/"],
"matchStrings": ["ARG MULTIJSON_VERSION=(?<currentValue>\\d+\\.\\d+\\.\\d+)"],
"depNameTemplate": "multi_json",
"datasourceTemplate": "rubygems",
"versioningTemplate": "semver"
},
{
"description": "ARG SSM_PLUGIN_VERSION → aws/session-manager-plugin tags (4-part, no v prefix). Does NOT bump SSM_PLUGIN_SHA256 — recompute the deb hash manually on bump.",
"customType": "regex",
"managerFilePatterns": ["/(^|/)Dockerfile$/"],
"matchStrings": ["ARG SSM_PLUGIN_VERSION=(?<currentValue>\\d+\\.\\d+\\.\\d+\\.\\d+)"],
"depNameTemplate": "aws/session-manager-plugin",
"datasourceTemplate": "github-tags",
"versioningTemplate": "loose"
}
]
}