forked from InseeFrLab/images-datascience
-
Notifications
You must be signed in to change notification settings - Fork 0
/
renovate.json
35 lines (35 loc) · 1.14 KB
/
renovate.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base"
],
"regexManagers": [
{
"fileMatch": ["r-minimal/Dockerfile"],
"matchStrings": ["ARG R_VERSION=\"(?<currentValue>.*?)\""],
"depNameTemplate": "rocker-org/rocker-versioned2",
"datasourceTemplate": "github-releases",
"extractVersionTemplate": "^R(?<version>.*)$"
},
{
"fileMatch": ["python-minimal/Dockerfile"],
"matchStrings": ["ARG PYTHON_VERSION=\"(?<currentValue>.*?)\""],
"depNameTemplate": "conda-forge/python",
"datasourceTemplate": "conda"
},
{
"fileMatch": ["scripts/install-julia.sh"],
"matchStrings": ["JULIA_VERSION=\"(?<currentValue>.*?)\""],
"depNameTemplate": "JuliaLang/julia",
"datasourceTemplate": "github-releases",
"extractVersionTemplate": "^v(?<version>.*)$"
},
{
"fileMatch": ["spark/Dockerfile"],
"matchStrings": ["ARG SPARK_VERSION=\"(?<currentValue>.*?)\""],
"depNameTemplate": "apache/spark",
"datasourceTemplate": "github-releases",
"extractVersionTemplate": "^v(?<version>.*)$"
}
]
}