From 039790ea0650c025cdc2f64fd5899b11d0112b52 Mon Sep 17 00:00:00 2001 From: Scott Brenner Date: Sat, 17 Jan 2026 14:11:04 -0800 Subject: [PATCH 1/2] ci: add Dependabot configuration for GitHub Actions --- .github/dependabot.yml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..75e07eec --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,9 @@ +version: 2 +updates: + # Enable version updates for GitHub Actions + - package-ecosystem: "github-actions" + # Look for GitHub Actions workflows in the `root` directory + directory: "/" + # Check for updates once a week + schedule: + interval: "weekly" From 6b987ce575d1f274363b91bb6792590e6c871e13 Mon Sep 17 00:00:00 2001 From: Alexander Dines <160077924+dines-rl@users.noreply.github.com> Date: Fri, 23 Jan 2026 15:24:39 -0800 Subject: [PATCH 2/2] Add npm package ecosystem to dependabot configuration --- .github/dependabot.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 75e07eec..0e93c5f2 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -7,3 +7,8 @@ updates: # Check for updates once a week schedule: interval: "weekly" + + - package-ecosystem: "npm" + directory: "/" + schedule: + interval: "weekly"