From 44254cd8eda4e9d218b23fb4069bd4a5bce2e722 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Jul 2026 02:05:49 +0000 Subject: [PATCH 1/3] Bump actions/checkout from 4 to 7 in the github-actions group Bumps the github-actions group with 1 update: [actions/checkout](https://github.com/actions/checkout). Updates `actions/checkout` from 4 to 7 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 5a99cf6..5371e8d 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -29,6 +29,6 @@ jobs: runs-on: ubuntu-latest defaults: {run: {working-directory: ./renovate}} steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: actions/setup-node@v6 - run: npx --yes --package renovate -- renovate-config-validator --strict default.json From 123d7e874cc0deffa30ca2c1bd2d411a9f7092ce Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 1 Jul 2026 11:30:19 +0000 Subject: [PATCH 2/3] Fix Renovate config: migrate regex patterns to use slash delimiters --- renovate/default.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/renovate/default.json b/renovate/default.json index c32d91f..f98eec5 100644 --- a/renovate/default.json +++ b/renovate/default.json @@ -18,19 +18,19 @@ "minimumReleaseAge": "7 days", "docker-compose": { "enabled": true, - "fileMatch": ["(^|/)(?:docker-)?compose[^/]*\\.ya?ml$"], + "fileMatch": ["/(^|/)(?:docker-)?compose[^/]*\\.ya?ml$/"], "digest": {"enabled": false} }, - "helmv3": {"fileMatch": ["(^|/)values.*\\.ya?ml$"]}, + "helmv3": {"fileMatch": ["/(^|/)values.*\\.ya?ml$/"]}, "customManagers": [ { "customType": "regex", "description": "Custom renovations", "fileMatch": [ - "(^|/|\\.)Dockerfile$", - "(^|/)Dockerfile\\.[^/]*$", - "\\.hcl$", - "\\.ya?ml$" + "/(^|/|\\.)Dockerfile$/", + "/(^|/)Dockerfile\\.[^/]*$/", + "/\\.hcl$/", + "/\\.ya?ml$/" ], "matchStrings": [ "# renovate: source=(?\\S+) name=(?\\S+)(?: depType=(?[a-z-]+?))?(?: versioning=(?\\S+))?(?: extractVersion=(?\\S+))?[^\\n]*\\n[^\\n]+[:=]['\"\\s]*(?[^\"'\\n\\s]+)[\"']?[^\\n]*\\n?" From 41feec1ebc051bae72f8c8754b2cfbe3eae4cecc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=D0=B0ramtamt=C4=81m?= <7326800+tarampampam@users.noreply.github.com> Date: Wed, 1 Jul 2026 16:25:14 +0400 Subject: [PATCH 3/3] Update managerFilePatterns in default.json --- renovate/default.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/renovate/default.json b/renovate/default.json index f98eec5..df9ac85 100644 --- a/renovate/default.json +++ b/renovate/default.json @@ -18,19 +18,19 @@ "minimumReleaseAge": "7 days", "docker-compose": { "enabled": true, - "fileMatch": ["/(^|/)(?:docker-)?compose[^/]*\\.ya?ml$/"], + "managerFilePatterns": ["(^|/)(?:docker-)?compose[^/]*\\.ya?ml$"], "digest": {"enabled": false} }, - "helmv3": {"fileMatch": ["/(^|/)values.*\\.ya?ml$/"]}, + "helmv3": {"managerFilePatterns": ["(^|/)values.*\\.ya?ml$"]}, "customManagers": [ { "customType": "regex", "description": "Custom renovations", - "fileMatch": [ - "/(^|/|\\.)Dockerfile$/", - "/(^|/)Dockerfile\\.[^/]*$/", - "/\\.hcl$/", - "/\\.ya?ml$/" + "managerFilePatterns": [ + "(^|/|\\.)Dockerfile$", + "(^|/)Dockerfile\\.[^/]*$", + "\\.hcl$", + "\\.ya?ml$" ], "matchStrings": [ "# renovate: source=(?\\S+) name=(?\\S+)(?: depType=(?[a-z-]+?))?(?: versioning=(?\\S+))?(?: extractVersion=(?\\S+))?[^\\n]*\\n[^\\n]+[:=]['\"\\s]*(?[^\"'\\n\\s]+)[\"']?[^\\n]*\\n?"