Add more usages of RUNNER_VERSION to Renovate config. (#1313)

* Add more usages of RUNNER_VERSION to Renovate config.

* Double-escape `?` in pattern
This commit is contained in:
Daniel Moran 2022-04-11 06:28:00 -04:00 committed by GitHub
parent 7124451cea
commit f907f82275
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 19 additions and 2 deletions

View File

@ -14,10 +14,27 @@
// use https://github.com/actions/runner/releases
"fileMatch": [
".github/workflows/runners.yml"
],
],
"matchStrings": ["RUNNER_VERSION: +(?<currentValue>.*?)\\n"],
"depNameTemplate": "actions/runner",
"datasourceTemplate": "github-releases"
},
{
"fileMatch": [
"runner/Makefile"
],
"matchStrings": ["RUNNER_VERSION \\?= +(?<currentValue>.*?)\\n"],
"depNameTemplate": "actions/runner",
"datasourceTemplate": "github-releases"
},
{
"fileMatch": [
"runner/Dockerfile",
"runner/Dockerfile.dindrunner"
],
"matchStrings": ["RUNNER_VERSION=+(?<currentValue>.*?)\\n"],
"depNameTemplate": "actions/runner",
"datasourceTemplate": "github-releases"
}
]
}
}