gilde-ci-cd/renovate.json
Marcel Feix 8829767c77
feat(IaC-Docker-Compose): Update execution Image.
Add Docker Compose Version to Renovate config
2022-07-08 09:55:42 +02:00

44 lines
1.0 KiB
JSON

{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base"
],
"assignees": [
"mfeix"
],
"regexManagers": [
{
"fileMatch": [
"(^|/).yml$"
],
"matchStrings": [
".*?IMAGE: (?<depName>.*?:*?):(?<currentValue>.*)\\s"
],
"datasourceTemplate": "docker",
"versioningTemplate": "docker"
},
{
"fileMatch": [
"container-scan.gitlab-ci.yml$"
],
"matchStrings": [
"TRIVY_VERSION: (?<currentValue>.*)\\s"
],
"depNameTemplate": "aquasecurity/trivy",
"datasourceTemplate": "github-releases",
"extractVersionTemplate": "^v(?<version>.*)$"
},
{
"fileMatch": [
"docker-compose.gitlab-ci.yml$"
],
"matchStrings": [
"DOCKER_COMPOSE_VERSION: (?<currentValue>.*)\\s"
],
"depNameTemplate": "docker/compose",
"datasourceTemplate": "github-releases",
"extractVersionTemplate": "^v(?<version>.*)$"
}
]
}