From 58b294e3cf03a69295034946197a016d315c1bb5 Mon Sep 17 00:00:00 2001 From: Kyle Sanderson Date: Thu, 3 Aug 2023 15:04:32 -0700 Subject: [PATCH] ci: enable dependabot (#1028) * Create dependabot.yml * flip day + time * add gomod * pnpm web * huzzah - the walrus is here * lines lines lines * do you want to climb a mountain * singing spock * I'M IN SPACE * what's a little / among friends --- .github/dependabot.yml | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..908de24 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,35 @@ +version: 2 +updates: + - package-ecosystem: github-actions + directory: / + schedule: + # Check for updates to GitHub Actions every week + interval: weekly + day: saturday + time: "07:00" + groups: + chore/dependabot/github: + patterns: + - "*" + + - package-ecosystem: gomod + directory: / + schedule: + interval: weekly + day: saturday + time: "07:00" + groups: + chore/dependabot/golang: + patterns: + - "*" + + - package-ecosystem: npm + directory: /web + schedule: + interval: weekly + day: saturday + time: "07:00" + groups: + chore/dependabot/npm: + patterns: + - "*"