diff --git a/.github/renovate.json5 b/.github/renovate.json5 index 10566bda..e584a4ba 100644 --- a/.github/renovate.json5 +++ b/.github/renovate.json5 @@ -14,10 +14,27 @@ // use https://github.com/actions/runner/releases "fileMatch": [ ".github/workflows/runners.yml" - ], + ], "matchStrings": ["RUNNER_VERSION: +(?.*?)\\n"], "depNameTemplate": "actions/runner", "datasourceTemplate": "github-releases" + }, + { + "fileMatch": [ + "runner/Makefile" + ], + "matchStrings": ["RUNNER_VERSION \\?= +(?.*?)\\n"], + "depNameTemplate": "actions/runner", + "datasourceTemplate": "github-releases" + }, + { + "fileMatch": [ + "runner/Dockerfile", + "runner/Dockerfile.dindrunner" + ], + "matchStrings": ["RUNNER_VERSION=+(?.*?)\\n"], + "depNameTemplate": "actions/runner", + "datasourceTemplate": "github-releases" } ] -} \ No newline at end of file +}