Skip to content

Commit

Permalink
renovate: try and convince OpenSSL to get updated
Browse files Browse the repository at this point in the history
  • Loading branch information
cmeister2 committed Oct 22, 2024
1 parent c4a3fa2 commit 92c6dad
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 18 deletions.
23 changes: 7 additions & 16 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,22 +9,8 @@
"customType": "regex",
"fileMatch": ["^scripts/VERSIONS$"],
"matchStrings": [
"# renovate: datasource=(?<datasource>.*?) depName=(?<depName>.*?)( versioning=(?<versioning>.*?))?( extractVersion=(?<extractVersion>.+?))?( registryUrl=(?<registryUrl>.*?))?\\s.*?_VERSION=(?<currentValue>.*)\\s"
],
"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": "semver",
"extractVersionTemplate": "^openssl-(?<major>\\d+)\\.(?<minor>\\d+)\\.(?<patch>\\d+)$",
"registryUrlTemplate": "https://github.com"
"# renovate: datasource=(?<datasource>.*?) depName=(?<depName>.*?)\\s.*?_VERSION=(?<currentValue>.*)\\s"
]
}
],
"packageRules": [
Expand All @@ -34,6 +20,11 @@
"https://github.com/actions/upload-artifact"
],
"groupName": "GitHub Actions: artifact"
},
{
"matchManagers": ["regex"],
"matchPackageNames": ["openssl/openssl"],
"extractVersion": "^openssl-(?<version>.*)$"
}
]
}
4 changes: 2 additions & 2 deletions scripts/VERSIONS
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

# Handled by renovate.json
# renovate: datasource=github-tags depName=openssl/openssl
OPENSSL_VERSION=3.2.0

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

0 comments on commit 92c6dad

Please sign in to comment.