From 0971c2521051444d6123d3f71681be44121fccd8 Mon Sep 17 00:00:00 2001 From: Rajpal Chauhan Date: Thu, 18 Apr 2024 13:21:36 -0700 Subject: [PATCH] chore: updating dependabot file to support github-actions and dev container Signed-off-by: Rajpal Chauhan --- .github/dependabot.yml | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index cd4692b7..32c41829 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -5,10 +5,19 @@ updates: # Maintain dependencies for GitHub Actions # - Check for updates once a week # - Group all updates into a single PR - - package-ecosystem: github-actions - directory: / + - package-ecosystem: "github-actions" + directory: "/" schedule: - interval: weekly + interval: "weekly" groups: all-actions: - patterns: [ "*" ] \ No newline at end of file + patterns: [ "*" ] + + # Maintain dependencies for dev Container + - package-ecosystem: "devcontainers" + directory: "/.devcontainer" + schedule: + interval: "weekly" + day: "monday" + time: "04:00" + timezone: "Canada/Pacific" \ No newline at end of file