From 023a8ba939aafed1862a80ce01fb8c8945c73185 Mon Sep 17 00:00:00 2001 From: Sighery Date: Wed, 12 Aug 2020 03:22:45 +0200 Subject: [PATCH] Switch to native Dependabot Previously Dependabot was a third-party service. Now that Dependabot has been bought by GitHub, it's being integrated into GitHub itself as a native service. To make use of the native version, the configuration changes slightly, and it goes under a new directory. --- .dependabot/config.yml | 9 --------- .github/dependabot.yml | 12 ++++++++++++ 2 files changed, 12 insertions(+), 9 deletions(-) delete mode 100644 .dependabot/config.yml create mode 100644 .github/dependabot.yml diff --git a/.dependabot/config.yml b/.dependabot/config.yml deleted file mode 100644 index 8e0bdc1..0000000 --- a/.dependabot/config.yml +++ /dev/null @@ -1,9 +0,0 @@ -version: 1 - -update_configs: - - package_manager: "go:modules" - directory: "/" - update_schedule: "daily" - - package_manager: "github_actions" - directory: "/" - update_schedule: "daily" diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..a9d8ffa --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,12 @@ +version: 2 + +updates: + - package-ecosystem: "gomod" + directory: "/" + schedule: + interval: "daily" + + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily"