diff --git a/.github/renovate.json b/.github/renovate.json index a9bd1a9..bc63592 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -1,4 +1,4 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": ["local>parca-dev/.github"] + "extends": ["github>parca-dev/.github"] } diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f29d86f..0ce8949 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -27,4 +27,4 @@ jobs: uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - name: Validate Renovate Config - run: npx -p renovate renovate-config-validator + run: npx -p renovate@latest renovate-config-validator diff --git a/default.json b/default.json index 28e67ac..3c25dd2 100644 --- a/default.json +++ b/default.json @@ -78,7 +78,7 @@ }, { "description": "Group packages from Kubernetes together", - "matchSourceUrls": ["https://github.com/kubernetes/{/,}**"], + "matchSourceUrls": ["https://github.com/kubernetes/**"], "matchUpdateTypes": ["patch", "minor", "major"], "matchPackageNames": ["!/ingress-nginx/", "!/minikube/"], "groupName": "kubernetes" @@ -112,16 +112,13 @@ "matchUpdateTypes": ["patch", "minor", "major"], "semanticCommitType": "build" }, - { - "matchFileNames": ["Dockerfile"], - "semanticCommitType": "build" - } + { "matchFileNames": ["Dockerfile"], "semanticCommitType": "build" } ], "customManagers": [ { "description": "Update _VERSION variables in Makefiles", "customType": "regex", - "fileMatch": ["(^|/)Makefile$"], + "managerFilePatterns": ["/(^|/)Makefile$/"], "matchStrings": [ "# renovate: datasource=(?.+?) depName=(?.+?)(?: (?:packageName)=(?.+?))?(?: versioning=(?.+?))?(?: extractVersion=(?.+?))?\\s[A-Z_]+?_VERSION .?= (?.+?)\\s" ] @@ -129,7 +126,7 @@ { "description": "Update _VERSION variables in shell scripts", "customType": "regex", - "fileMatch": ["\\.sh$"], + "managerFilePatterns": ["/\\.sh$/"], "matchStrings": [ "# renovate: datasource=(?.+?) depName=(?.+?)(?: (?:packageName)=(?.+?))?(?: versioning=(?.+?))?(?: extractVersion=(?.+?))?\\s[A-Z_]+?_VERSION=('|\")?(?.+?)('|\")?\\s" ] @@ -137,7 +134,7 @@ { "description": "Update Golang in .go-version file", "customType": "regex", - "fileMatch": ["(^|/)\\.go-version$"], + "managerFilePatterns": ["/(^|/)\\.go-version$/"], "matchStrings": ["^\\s*(?.+?)\\s*$"], "depNameTemplate": "golang", "datasourceTemplate": "golang-version" @@ -145,7 +142,7 @@ { "description": "Update Rust stable version in rust-toolchain.toml", "customType": "regex", - "fileMatch": ["(^|/)rust-toolchain\\.toml$"], + "managerFilePatterns": ["/(^|/)rust-toolchain\\.toml$/"], "matchStrings": ["channel\\s*=\\s*('|\")(?.+?)('|\")\\s"], "depNameTemplate": "rust", "packageNameTemplate": "rust-lang/rust",