From 9216d7e2ead5e2d7db08c7b7c98065b1f1e44f44 Mon Sep 17 00:00:00 2001 From: Ed Sabol <22986767+esabol@users.noreply.github.com> Date: Mon, 30 Mar 2026 01:50:49 -0400 Subject: [PATCH] Add Dependabot GitHub Actions workflow --- .github/dependabot.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..13d92b2 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,15 @@ +# Keep the GitHub Actions used in .github/workflows/* up to date +# Reference: https://docs.github.com/en/code-security/reference/supply-chain-security/dependabot-options-reference +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" # Root of the repository + schedule: + interval: "weekly" + open-pull-requests-limit: 10 # Prevent too many open PRs + labels: + - "github-actions" + # Group updates together (newer Dependabot feature) + groups: + actions: + dependency-type: "production"