From f907f822754b830d45791b52ca0f93f56d773b8f Mon Sep 17 00:00:00 2001 From: Daniel Moran Date: Mon, 11 Apr 2022 06:28:00 -0400 Subject: [PATCH] Add more usages of RUNNER_VERSION to Renovate config. (#1313) * Add more usages of RUNNER_VERSION to Renovate config. * Double-escape `?` in pattern --- .github/renovate.json5 | 21 +++++++++++++++++++-- 1 file changed, 19 insertions(+), 2 deletions(-) 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 +}