From 050526dde63e5a072b100300efc8f71a8c489b7c Mon Sep 17 00:00:00 2001 From: Nick Charlton Date: Tue, 12 Sep 2023 16:23:11 +0100 Subject: [PATCH] Add GitHub Actions as an ecosystem for Dependabot This should help keep us on top of Actions versions, without having to do it manually. This commit also formats using yamllint, to avoid some common YAML mistakes. https://docs.github.com/en/code-security/dependabot/working-with-dependabot/keeping-your-actions-up-to-date-with-dependabot --- .github/dependabot.yml | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index e8f97db17d..5810298de6 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,8 +1,16 @@ +--- version: 2 updates: -- package-ecosystem: bundler - directory: "/" - schedule: - interval: daily - open-pull-requests-limit: 10 + - package-ecosystem: bundler + directory: "/" + schedule: + interval: daily + open-pull-requests-limit: 10 + + - package-ecosystem: github-actions + directory: "/" + schedule: + interval: weekly + time: '02:00' + timezone: 'Etc/UTC'