From e006d9511c4f3b413cdfd5ad4e640c3b7f81f1b2 Mon Sep 17 00:00:00 2001 From: per1234 Date: Wed, 4 Aug 2021 22:29:58 -0700 Subject: [PATCH] [skip changelog] Remove obsolete "Dependabot Preview" configuration file Dependabot Preview shut down 2021-08-03. It is replaced by GitHub-native Dependabot, which uses the `.github/dependabot.yml` configuration file, with a different data format. From an investigation into how the obsolete configuration could be migrated to the new format, I determined that the specific "security updates only" configuration used by this repository is not provided by the new configuration file, which is for configuring updates of any outdated dependencies. The "security updates" feature is configured via the repository settings (Settings > Security & analysis). Since the old file is no longer used, and might cause confusion, it is best to remove it from the repository. --- .dependabot/config.yml | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 .dependabot/config.yml diff --git a/.dependabot/config.yml b/.dependabot/config.yml deleted file mode 100644 index 70ca8b91fb7..00000000000 --- a/.dependabot/config.yml +++ /dev/null @@ -1,10 +0,0 @@ -version: 1 -update_configs: - - package_manager: "go:modules" - directory: "/" - update_schedule: "daily" - allowed_updates: - - match: - update_type: "security" - default_labels: - - "topic: dependencies"