Skip to content

Commit

Permalink
Update dependabot frequency and remove Jenkins
Browse files Browse the repository at this point in the history
Dependabot should skip the path version updates for Spring Boot.
Prior to this change the patch version on all dependencies was excluded.
This change specifies org.springframework.* specifically in the
Gradle folders in order to allow the dependency
io.spring.dependency-management to be updated on the patch release.
There is no maven equivalent for this, so only the Gradle
exclusion was changed.

This change also removes the test folder which was applicable only
to the Jenkins CI environment, which is being decomissioned.
  • Loading branch information
Robert McNees committed Jun 11, 2024
1 parent 0412e7e commit 0736dbc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 38 deletions.
4 changes: 2 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ updates:
- package-ecosystem: "gradle"
directory: "/initial/"
ignore:
- dependency-name: "*"
- dependency-name: "org.springframework.*"
update-types: ["version-update:semver-patch"]
schedule:
interval: "monthly"
Expand All @@ -30,7 +30,7 @@ updates:
- package-ecosystem: "gradle"
directory: "/complete/"
ignore:
- dependency-name: "*"
- dependency-name: "org.springframework.*"
update-types: ["version-update:semver-patch"]
schedule:
interval: "monthly"
Expand Down
36 changes: 0 additions & 36 deletions test/run.sh

This file was deleted.

0 comments on commit 0736dbc

Please sign in to comment.