Skip to content

Commit

Permalink
Use new renovate confix
Browse files Browse the repository at this point in the history
  • Loading branch information
DRSchlaubi authored Mar 2, 2024
1 parent 297b268 commit f75c7dc
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,22 @@
"customType": "regex",
"description": "Update curl Version",
"fileMatch": ["Dockerfile"],
"matchStrings": ["curl-(?<currentValue>\\d+\\.\\d+\\.\\d+)\\.tar\\.gz"],
"datasourceTemplate": "github-releases",
"matchStrings": ["(?<currentValue>curl-\\d+\\.\\d+\\.\\d+)"],
"datasourceTemplate": "custom.curl",
"depNameTemplate": "curl/curl",
"versioningTemplate": "regex:^(?:curl-)?(?<major>\\d+)[_.](?<minor>\\d+)[_.](?<patch>\\d+)$"
"versioningTemplate": "regex:curl-(?<major>\\d+)\\.(?<minor>\\d+)\\.(?<patch>\\d+)"
}
],
"customDatasources": {
"curl": {
"defaultRegistryUrlTemplate": "https://curl.se/download.html",
"format": "html"
}
},
"packageRules": [
{
"matchDatasources": ["custom.curl"],
"extractVersion": "/curl-(?<version>.+)\\.tar\\.gz\""
}
]
}

0 comments on commit f75c7dc

Please sign in to comment.