adjust renovate
continuous-integration/drone/pr Build is passing Details

This commit is contained in:
Robert Kaussow 2020-10-17 21:23:13 +02:00
parent 609a8e17a2
commit 36eaf4f704
Signed by: xoxys
GPG Key ID: 65362AE74AF98B61
3 changed files with 18 additions and 1 deletions

View File

@ -6,7 +6,9 @@ LABEL maintainer="Robert Kaussow <mail@geeklabor.de>" \
org.label-schema.vendor="Robert Kaussow" \
org.label-schema.schema-version="1.0"
ARG VAULT_VERSION=2.15.1
ARG VAULT_VERSION
# renovate: datasource=github-releases depName=dani-garcia/bw_web_builds
ENV VAULT_VERSION="${VAULT_VERSION:-2.15.1}"
ADD overlay/ /

View File

@ -1,3 +1,4 @@
# renovate: datasource=github-releases depName=dani-garcia/bitwarden_rs
export BUILD_VERSION ?= 1.16.1
export DEBIAN_FRONTEND ?= noninteractive
export LANG ?= C.UTF-8

View File

@ -2,5 +2,19 @@
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base"
],
"regexManagers": [
{
"fileMatch": ["^Dockerfile$"],
"matchStrings": [
"datasource=(?<datasource>.*?) depName=(?<depName>.*?)( versioning=(?<versioning>.*?))?\\sENV .*?_VERSION=\"\\${.*:-(?<currentValue>.*)}\"\\s"
]
},
{
"fileMatch": ["^Makefile$"],
"matchStrings": [
"datasource=(?<datasource>.*?) depName=(?<depName>.*?)( versioning=(?<versioning>.*?))?\\sexport .*?_VERSION \?= (?<currentValue>.*)\\s"
]
}
]
}