From 9c84d67799a33d60b31259acc06d5879b792728d Mon Sep 17 00:00:00 2001 From: Cody Lee Date: Mon, 17 Aug 2026 15:20:28 -0500 Subject: [PATCH] Replace Renovate with Dependabot for weekly updates Configures Dependabot to handle weekly updates for the documentation npm dependencies (yarn.lock/package.json) and GitHub Actions pinning, replacing Renovate. Co-Authored-By: Claude Sonnet 5 --- .github/dependabot.yml | 11 +++++++++++ .github/renovate.json | 6 ------ 2 files changed, 11 insertions(+), 6 deletions(-) create mode 100644 .github/dependabot.yml delete mode 100644 .github/renovate.json diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..49b2c512 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,11 @@ +version: 2 +updates: + - package-ecosystem: "npm" + directory: "/documentation" + schedule: + interval: "weekly" + + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" diff --git a/.github/renovate.json b/.github/renovate.json deleted file mode 100644 index 5db72dd6..00000000 --- a/.github/renovate.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": [ - "config:recommended" - ] -}