From da23f583aa93f3c15efb93909a0859eec96547e5 Mon Sep 17 00:00:00 2001 From: Logan Lindquist Land Date: Fri, 21 Aug 2026 18:53:15 -0500 Subject: [PATCH] ci: add automated dependency updates --- .github/dependabot.yml | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..1f78886 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,37 @@ +version: 2 + +updates: + - package-ecosystem: bun + directory: / + schedule: + interval: weekly + day: monday + time: "09:00" + timezone: America/Chicago + commit-message: + prefix: "chore(deps)" + groups: + minor-and-patch: + patterns: + - "*" + update-types: + - minor + - patch + ignore: + # This alias intentionally keeps the analyzer on TypeScript 6 while the + # CLI uses TypeScript 7. See src/lib/analyzers/imports.ts. + - dependency-name: typescript-api + + - package-ecosystem: github-actions + directory: / + schedule: + interval: weekly + day: monday + time: "09:00" + timezone: America/Chicago + commit-message: + prefix: "chore(actions)" + groups: + all-actions: + patterns: + - "*"