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 9304a6e
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,17 @@
"description": "Update curl Version",
"fileMatch": ["Dockerfile"],
"matchStrings": ["curl-(?<currentValue>\\d+\\.\\d+\\.\\d+)\\.tar\\.gz"],
"datasourceTemplate": "github-releases",
"datasourceTemplate": "custom.curl",
"depNameTemplate": "curl/curl",
"versioningTemplate": "regex:^(?:curl-)?(?<major>\\d+)[_.](?<minor>\\d+)[_.](?<patch>\\d+)$"
"versioningTemplate": "regex:curl-(?<major>\\d+)\\.(?<minor>\\d+)\\.(?<patch>\\d+)\\.tar\\.gz"
}
]
],
"customDatasources": {
"curl": {
"defaultRegistryUrlTemplate": "https://api.github.com/repos/curl/curl/releases/latest",
"transformTemplates": [
"$single(assets, function($item) {$contains($item.name, \".tar.gz\") and ($contains($item.name, \".asc\") != true)}).name"
]
}
}
}

0 comments on commit 9304a6e

Please sign in to comment.