Skip to content

Commit

Permalink
renovate: Switch to direct configuration in renovate.json for Openssl
Browse files Browse the repository at this point in the history
  • Loading branch information
cmeister2 committed Dec 16, 2023
1 parent b8d8989 commit 53694af
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
11 changes: 11 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,17 @@
],
"versioningTemplate": "{{#if versioning}}{{{versioning}}}{{else}}semver{{/if}}",
"extractVersionTemplate": "{{#if extractVersion}}{{{extractVersion}}}{{else}}^v?(?<version>.+)${{/if}}"
},
{
"customType": "regex",
"fileMatch": ["^scripts/VERSIONS$"],
"matchStrings": [
"OPENSSL_VERSION=(?<currentValue>.*)\\s"
],
"datasourceTemplate": "github-tags",
"depNameTemplate": "openssl/openssl",
"versioningTemplate": "regex:^openssl-(?<major>\\d+)\\.(?<minor>\\d+)\\.(?<patch>\\d+)$",
"registryUrlTemplate": "https://github.com"
}
]
}
2 changes: 1 addition & 1 deletion scripts/VERSIONS
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

# renovate: datasource=github-tags depName=openssl/openssl versioning=regex:^openssl-(?<major>\\d+)(\\.(?<minor>\\d+))?(\\.(?<patch>\\d+))? registryUrl=https://github.com
# Handled by renovate.json
OPENSSL_VERSION=openssl-3.2.0

# renovate: datasource=github-tags depName=nghttp2/nghttp2 versioning=semver registryUrl=https://github.com
Expand Down

0 comments on commit 53694af

Please sign in to comment.