mirror of
https://github.com/gradle/actions.git
synced 2026-08-17 11:22:50 +00:00
Previously handled via `@dependabot ignore` issue comments, which don't provide enough control. Declaring the rules in the config makes them explicit and reviewable. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
54 lines
1.4 KiB
YAML
54 lines
1.4 KiB
YAML
version: 2
|
|
registries:
|
|
gradle-plugin-portal:
|
|
type: maven-repository
|
|
url: https://plugins.gradle.org/m2
|
|
username: dummy # Required by dependabot
|
|
password: dummy # Required by dependabot
|
|
|
|
updates:
|
|
- package-ecosystem: "npm"
|
|
directory: "/sources"
|
|
schedule:
|
|
interval: "weekly"
|
|
groups:
|
|
npm-dependencies:
|
|
patterns:
|
|
- "*"
|
|
ignore:
|
|
- dependency-name: "typescript"
|
|
versions: ["7.x"]
|
|
- dependency-name: "@types/node"
|
|
versions: ["25.x", "26.x"]
|
|
- package-ecosystem: "github-actions"
|
|
# github-actions with directory: "/" only monitors .github/workflows
|
|
# https://github.com/dependabot/dependabot-core/issues/6345
|
|
directories:
|
|
- "/"
|
|
- "/.github/actions/build-dist"
|
|
- "/.github/actions/init-integ-test"
|
|
schedule:
|
|
interval: "weekly"
|
|
groups:
|
|
github-actions:
|
|
patterns:
|
|
- "*"
|
|
|
|
- package-ecosystem: "gradle"
|
|
directories:
|
|
- ".github/workflow-samples/gradle-plugin"
|
|
- ".github/workflow-samples/groovy-dsl"
|
|
- ".github/workflow-samples/java-toolchain"
|
|
- ".github/workflow-samples/kotlin-dsl"
|
|
- ".github/workflow-samples/no-wrapper"
|
|
- ".github/workflow-samples/no-wrapper-gradle-5"
|
|
- "sources/test/init-scripts"
|
|
registries:
|
|
- gradle-plugin-portal
|
|
schedule:
|
|
interval: "weekly"
|
|
groups:
|
|
gradle:
|
|
patterns:
|
|
- "*"
|