Skip to content

Commit 5aaf114

Browse files
authored
Add dependabot.yml to monitor outdated dependencies (#1289)
1 parent ca2ada2 commit 5aaf114

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

.github/dependabot.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "gradle"
4+
directory: "/"
5+
schedule:
6+
interval: "weekly"
7+
commit-message:
8+
prefix: "dependabot:"
9+
ignore:
10+
# For all packages, ignore all major versions to minimize breaking issues
11+
- dependency-name: "*"
12+
update-types: ["version-update:semver-major"]
13+
- package-ecosystem: "github-actions"
14+
directory: "/"
15+
schedule:
16+
interval: "weekly"
17+
commit-message:
18+
prefix: "dependabot:"

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -638,7 +638,7 @@ task integTestRemote(type: RestIntegTestTask) {
638638

639639
// === Set up BWC tests ===
640640

641-
String bwcVersionShort = "2.18.0"
641+
String bwcVersionShort = "2.19.0"
642642
String bwcVersion = bwcVersionShort + ".0"
643643
String baseName = "indexmanagementBwcCluster"
644644

0 commit comments

Comments
 (0)