From 531534161976b1cd74763c900ac6fb5d9906b83b Mon Sep 17 00:00:00 2001 From: "Jonathan D.A. Jewell" <6759885+hyperpolymath@users.noreply.github.com> Date: Tue, 12 May 2026 22:40:46 +0200 Subject: [PATCH] ci(deps): add Dependabot config to surface Rust security alerts This repo had no .github/dependabot.yml, so Dependabot was not raising PRs for outstanding HIGH/CRITICAL Rust crate vulnerabilities. Adopting the corrected RSR template approach: cargo PRs enabled, grouped minor/patch, security PRs flow normally. --- .github/dependabot.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..921e60f --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,27 @@ +# SPDX-License-Identifier: PMPL-1.0-or-later +# Dependabot configuration — adopts the corrected RSR template approach +# (open-pull-requests-limit: 10 on cargo, grouped minor/patch). + +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + groups: + actions: + patterns: + - "*" + + - package-ecosystem: "cargo" + directory: "/" + schedule: + interval: "weekly" + open-pull-requests-limit: 10 + groups: + cargo: + patterns: + - "*" + update-types: + - "minor" + - "patch"