Skip to content

Commit 77c350d

Browse files
committed
Ignore specific Spring dependencies in Dependabot
Added rules to ignore updates for org.springframework.boot, org.springframework.security, and org.springdoc dependencies above specified major versions in Dependabot configuration.
1 parent 4f048f7 commit 77c350d

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/dependabot.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,13 @@ updates:
1111
interval: "weekly"
1212
target-branch: "2025.4"
1313
open-pull-requests-limit: 15
14+
ignore:
15+
- dependency-name: "org.springframework.boot:*"
16+
versions: [">= 4.0.0"]
17+
- dependency-name: "org.springframework.security:*"
18+
versions: [">= 7.0.0"]
19+
- dependency-name: "org.springdoc:*"
20+
versions: [">= 3.0.0"]
1421
groups:
1522
java:
1623
applies-to: version-updates

0 commit comments

Comments
 (0)