From e78f9b39bc029cb68de67020cbcc6cd2acca3bc0 Mon Sep 17 00:00:00 2001 From: HonkingGoose <34918129+HonkingGoose@users.noreply.github.com> Date: Sat, 10 Oct 2020 23:07:16 +0200 Subject: [PATCH] Migrate to GitHub-native Dependabot Remove the dependabot-preview configuration and instead use the new configuration file in the .github folder. Dependabot now searches for updates on working days (Monday-Friday), the live schedule is no longer possible with GitHub-native Dependabot. Dependabot now also checks for GitHub Action runner updates as well. --- .dependabot/config.yml | 6 ------ .github/dependabot.yml | 11 +++++++++++ 2 files changed, 11 insertions(+), 6 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 6ada54df..00000000 --- a/.dependabot/config.yml +++ /dev/null @@ -1,6 +0,0 @@ -version: 1 - -update_configs: - - package_manager: 'javascript' - directory: '/' - update_schedule: 'live' diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..d7f2cc0d --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,11 @@ +version: 2 +updates: + - package-ecosystem: "npm" + directory: "/" + schedule: + interval: daily + + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: daily