[Renovate] Added initial comment
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Simon Cornet 2023-11-08 16:05:11 +01:00
parent 0fe1a80a6d
commit bc3acfd021
2 changed files with 26 additions and 1 deletions

View File

@ -1,9 +1,13 @@
# alpine version
FROM alpine:3.18
# software versions
# renovate: datasource=pypi depName=ansible-core versioning=pep440
ENV ANSIBLE_VERSION=2.13.11
# renovate: datasource=pypi depName=ansible-lint versioning=pep440
ENV ANSIBLE_LINT_VERSION=6.22.0
# renovate: datasource=pypi depName=yamllint versioning=pep440
ENV YAML_LINT_VERSION=1.32.0
# install software

21
renovate.json Normal file
View File

@ -0,0 +1,21 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"dependencyDashboard": true,
"dependencyDashboardApproval": true,
"major": {
"dependencyDashboardApproval": true
},
"minor": {
"dependencyDashboardApproval": true
},
"enabledManagers": ["dockerfile"],
"regexManagers": [
{
"fileMatch": ["Dockerfile(.*)"],
"matchStrings": [
"# renovate: datasource=(?<datasource>[a-z-]+?) depName=(?<depName>.+?)(?: (?:packageName|lookupName)=(?<packageName>.+?))?(?: versioning=(?<versioning>[a-z0-9-]+?))?\\s(?:ENV|ARG) .+?_VERSION=(?<currentValue>.+?)\\s"
],
"versioningTemplate": "{{#if versioning}}{{versioning}}{{else}}semver{{/if}}"
}
]
}