-
Notifications
You must be signed in to change notification settings - Fork 141
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Dependabot and Gradle files for Dependabot (#128)
This commit lays the foundation for dependabot to better manage version updates in the future. Specifically, there were 3 issues addressed in this PR: - Gradle build files were using set() instead of = which causes dependabot to miss upgrading the dependency - Gradle build files were specifying the version of io.spring.dpeendency-management which necessitated logic in the dependabot config, which was not working correctly - Dependabot was not using groups to limit the number of PRs sent for a given version update After this update Dependabot should be able to ignore all patch versions going forward for Vaadin. This commit also updates the Spring Boot and Vaadin versions to the latest patch releases.
- Loading branch information
1 parent
25c51e5
commit f1b42a7
Showing
6 changed files
with
31 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,32 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "maven" | ||
directory: "/initial/" | ||
ignore: | ||
- dependency-name: "*" | ||
update-types: ["version-update:semver-patch"] | ||
schedule: | ||
interval: "monthly" | ||
target-branch: "main" | ||
|
||
- package-ecosystem: "gradle" | ||
directory: "/initial/" | ||
ignore: | ||
- dependency-name: "org.springframework.*" | ||
update-types: ["version-update:semver-patch"] | ||
- dependency-name: "com.vaadin.*" | ||
update-types: ["version-update:semver-patch"] | ||
schedule: | ||
interval: "monthly" | ||
target-branch: "main" | ||
|
||
- package-ecosystem: "maven" | ||
directory: "/complete/" | ||
directories: | ||
- "/initial" | ||
- "/complete" | ||
ignore: | ||
- dependency-name: "*" | ||
update-types: ["version-update:semver-patch"] | ||
schedule: | ||
interval: "monthly" | ||
target-branch: "main" | ||
groups: | ||
guide-dependencies-maven: | ||
patterns: | ||
- "*" | ||
|
||
- package-ecosystem: "gradle" | ||
directory: "/complete/" | ||
directories: | ||
- "/initial" | ||
- "/complete" | ||
ignore: | ||
- dependency-name: "org.springframework.*" | ||
update-types: ["version-update:semver-patch"] | ||
- dependency-name: "com.vaadin.*" | ||
- dependency-name: "*" | ||
update-types: ["version-update:semver-patch"] | ||
schedule: | ||
interval: "monthly" | ||
target-branch: "main" | ||
groups: | ||
guide-dependencies-gradle: | ||
patterns: | ||
- "*" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters