From 65997bb05ffead8d20cfc1ed01073e77fa2ae42b Mon Sep 17 00:00:00 2001 From: TNeitzel Date: Sun, 28 Jun 2020 15:16:56 +0200 Subject: [PATCH 1/2] Fix bug in dependabot.yml The package-ecosystem was still in version 1 format. This has now been fixed. --- .github/dependabot.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 19c84b3..ff54102 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,6 +1,6 @@ version: 2 updates: - - package-ecosystem: "java:maven" + - package-ecosystem: "maven" directory: "/" target_branch: "develop" schedule: From 1ceb06313b91778a2e6256496387a1be01233f25 Mon Sep 17 00:00:00 2001 From: TNeitzel Date: Sun, 28 Jun 2020 15:19:37 +0200 Subject: [PATCH 2/2] Fix bug in dependabot.yml Fixed another syntax error. --- .github/dependabot.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index ff54102..626dd88 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -2,6 +2,6 @@ version: 2 updates: - package-ecosystem: "maven" directory: "/" - target_branch: "develop" schedule: interval: "daily" + target-branch: "develop"