Skip to content

Commit 2cf7c4f

Browse files
committed
Use explicit version numbers to prevent spring updates in 3.5.x branch
Co-authored-by: Marco Geweke <marco.geweke@otto.de>
1 parent 5877668 commit 2cf7c4f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/dependabot.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ updates:
2121
ignore:
2222
# Ignore Spring Boot > 3
2323
- dependency-name: "org.springframework.boot:*"
24-
update-types: [ "version-update:semver-major" ]
24+
versions: [ ">= 4.0.0" ]
2525
# Ignore Spring Framework > 6
2626
- dependency-name: "org.springframework:*"
27-
update-types: [ "version-update:semver-major" ]
27+
versions: [ ">= 7.0.0" ]
2828
# Ignore Spring Security > 6
2929
- dependency-name: "org.springframework.security:*"
30-
update-types: [ "version-update:semver-major" ]
30+
versions: [ ">= 7.0.0" ]

0 commit comments

Comments
 (0)