mirror of
https://github.com/gradle/actions.git
synced 2026-06-06 18:29:39 +08:00
Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 9acec6a4a7 |
@@ -1,78 +0,0 @@
|
||||
{
|
||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||
extends: [
|
||||
"config:recommended",
|
||||
"github>gradle/renovate-agent//presets/dv-automerge-minor.json5",
|
||||
":disableDependencyDashboard",
|
||||
],
|
||||
// Renovate is scoped narrowly here: only the Develocity Gradle plugin (custom regex)
|
||||
// and the Gradle wrappers in selected sample directories.
|
||||
// Everything else (npm, github-actions, Maven coordinates) is managed by Dependabot
|
||||
// via .github/dependabot.yml.
|
||||
enabledManagers: ["custom.regex", "gradle-wrapper"],
|
||||
"gradle-wrapper": {
|
||||
fileMatch: [
|
||||
"^\\.github/workflow-samples/gradle-plugin/gradle/wrapper/gradle-wrapper\\.properties$",
|
||||
"^\\.github/workflow-samples/groovy-dsl/gradle/wrapper/gradle-wrapper\\.properties$",
|
||||
"^\\.github/workflow-samples/java-toolchain/gradle/wrapper/gradle-wrapper\\.properties$",
|
||||
"^\\.github/workflow-samples/kotlin-dsl/gradle/wrapper/gradle-wrapper\\.properties$",
|
||||
"^\\.github/workflow-samples/non-executable-wrapper/gradle/wrapper/gradle-wrapper\\.properties$",
|
||||
"^sources/test/init-scripts/gradle/wrapper/gradle-wrapper\\.properties$",
|
||||
],
|
||||
},
|
||||
customManagers: [
|
||||
{
|
||||
customType: "regex",
|
||||
description: "Bump Develocity Gradle plugin references in files outside Dependabot's coverage",
|
||||
fileMatch: [
|
||||
"^\\.github/workflows/integ-test-inject-develocity\\.yml$",
|
||||
"^sources/src/develocity/build-scan\\.ts$",
|
||||
"^docs/setup-gradle\\.md$",
|
||||
"(^|/)settings\\.gradle$",
|
||||
"(^|/)settings\\.gradle\\.kts$",
|
||||
"(^|/)build\\.gradle$",
|
||||
"(^|/)build\\.gradle\\.kts$",
|
||||
"^sources/test/init-scripts/src/test/groovy/com/gradle/gradlebuildaction/BaseInitScriptTest\\.groovy$",
|
||||
"^sources/test/init-scripts/src/test/groovy/com/gradle/gradlebuildaction/TestBuildResultRecorder\\.groovy$",
|
||||
],
|
||||
// Patterns capture any X.Y(.Z) version. The packageRules below filter to
|
||||
// just the current 4.x line and skip the pinned 3.x legacy refs.
|
||||
// When the plugin's major version changes, edit `matchCurrentVersion` and
|
||||
// `allowedVersions` in the packageRules block below — no regex edits here.
|
||||
matchStrings: [
|
||||
"plugin-version:[^\\n]*'(?<currentValue>\\d+\\.\\d+(?:\\.\\d+)?)'",
|
||||
"DEVELOCITY_PLUGIN_VERSION[^\\n]*'(?<currentValue>\\d+\\.\\d+(?:\\.\\d+)?)'",
|
||||
"`v(?<currentValue>\\d+\\.\\d+(?:\\.\\d+)?)`\\s+of\\s+the\\s+\\[Develocity Gradle plugin",
|
||||
"id\\s+['\"]com\\.gradle\\.develocity['\"]\\s+version\\s+['\"](?<currentValue>\\d+\\.\\d+(?:\\.\\d+)?)['\"]",
|
||||
"id\\(['\"]com\\.gradle\\.develocity['\"]\\)\\s+version\\s+['\"](?<currentValue>\\d+\\.\\d+(?:\\.\\d+)?)['\"]",
|
||||
],
|
||||
depNameTemplate: "com.gradle:develocity-gradle-plugin",
|
||||
datasourceTemplate: "maven",
|
||||
registryUrlTemplate: "https://plugins.gradle.org/m2",
|
||||
},
|
||||
],
|
||||
packageRules: [
|
||||
{
|
||||
// Skip the legacy 3.16.2 references that are intentionally pinned.
|
||||
matchManagers: ["custom.regex"],
|
||||
matchPackageNames: ["com.gradle:develocity-gradle-plugin"],
|
||||
matchCurrentVersion: "<4.0.0",
|
||||
enabled: false,
|
||||
},
|
||||
{
|
||||
// Current 4.x line. To start tracking the next major (5.x), replace `5.0.0`
|
||||
// with `6.0.0` in both fields below — no regex edits needed.
|
||||
matchManagers: ["custom.regex"],
|
||||
matchPackageNames: ["com.gradle:develocity-gradle-plugin"],
|
||||
matchCurrentVersion: ">=4.0.0 <5.0.0",
|
||||
allowedVersions: "<5.0.0",
|
||||
groupName: "Develocity Gradle plugin",
|
||||
groupSlug: "develocity-gradle-plugin",
|
||||
},
|
||||
{
|
||||
matchManagers: ["gradle-wrapper"],
|
||||
groupName: "Gradle wrappers",
|
||||
groupSlug: "gradle-wrappers",
|
||||
},
|
||||
],
|
||||
}
|
||||
Generated
+686
-606
File diff suppressed because it is too large
Load Diff
+14
-14
@@ -37,36 +37,36 @@
|
||||
"dependencies": {
|
||||
"@actions/artifact": "6.1.0",
|
||||
"@actions/cache": "6.0.0",
|
||||
"@actions/core": "3.0.0",
|
||||
"@actions/core": "3.0.1",
|
||||
"@actions/exec": "3.0.0",
|
||||
"@actions/github": "9.0.0",
|
||||
"@actions/glob": "0.6.1",
|
||||
"@actions/http-client": "4.0.0",
|
||||
"@actions/github": "9.1.1",
|
||||
"@actions/glob": "0.7.0",
|
||||
"@actions/http-client": "4.0.1",
|
||||
"@actions/tool-cache": "4.0.0",
|
||||
"@octokit/webhooks-types": "7.6.1",
|
||||
"cheerio": "1.2.0",
|
||||
"semver": "7.7.4",
|
||||
"semver": "7.8.1",
|
||||
"string-argv": "0.3.2",
|
||||
"unhomoglyph": "1.0.6",
|
||||
"which": "6.0.1"
|
||||
"which": "7.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@jest/globals": "30.3.0",
|
||||
"@jest/globals": "30.4.1",
|
||||
"@types/jest": "30.0.0",
|
||||
"@types/node": "25.5.0",
|
||||
"@types/node": "25.9.1",
|
||||
"@types/semver": "7.7.1",
|
||||
"@types/unzipper": "0.10.11",
|
||||
"@types/which": "3.0.4",
|
||||
"@typescript-eslint/eslint-plugin": "8.58.0",
|
||||
"@typescript-eslint/eslint-plugin": "8.59.4",
|
||||
"dedent": "1.7.2",
|
||||
"esbuild": "0.28.0",
|
||||
"eslint": "10.1.0",
|
||||
"globals": "17.4.0",
|
||||
"jest": "30.3.0",
|
||||
"eslint": "10.4.0",
|
||||
"globals": "17.6.0",
|
||||
"jest": "30.4.2",
|
||||
"nock": "15.0.0",
|
||||
"npm-run-all": "4.1.5",
|
||||
"prettier": "3.8.1",
|
||||
"ts-jest": "29.4.9",
|
||||
"prettier": "3.8.3",
|
||||
"ts-jest": "29.4.11",
|
||||
"typescript": "5.9.3"
|
||||
},
|
||||
"overrides": {
|
||||
|
||||
Reference in New Issue
Block a user