From e2b6f97fd65a691dd5bfd4446478af5a81c793f2 Mon Sep 17 00:00:00 2001 From: Rajpal Chauhan Date: Thu, 16 May 2024 10:37:09 -0700 Subject: [PATCH] chore: updating dependabot to support gha, TS, JS and rust packages Signed-off-by: Rajpal Chauhan --- .github/dependabot.yml | 45 ++++++++++++++++++++++++++++++++++++++---- 1 file changed, 41 insertions(+), 4 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index cd4692b7..d85f3123 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -5,10 +5,47 @@ 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 TypeScript and JavaScript + - package-ecosystem: "npm" + directory: "/wrappers/javascript" + schedule: + interval: "weekly" + day: "monday" + time: "04:00" + timezone: "Canada/Pacific" + ignore: + - dependency-name: "*" + update-types: ["version-update:semver-major", "version-update:semver-patch"] + + # Maintain dependencies for Cargo Packages + - package-ecosystem: "cargo" + directory: "/" + schedule: + interval: "weekly" + day: "monday" + time: "04:00" + timezone: "Canada/Pacific" + ignore: + - dependency-name: "*" + update-types: ["version-update:semver-major"] + + # Maintain dependencies for Cargo Packages + - package-ecosystem: "cargo" + directory: "./askar-crypto/fuzz" + schedule: + interval: "weekly" + day: "monday" + time: "04:00" + timezone: "Canada/Pacific" + ignore: + - dependency-name: "*" + update-types: ["version-update:semver-major"] +