Skip to content

Commit 5315341

Browse files
committed
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.
1 parent d2d8caa commit 5315341

1 file changed

Lines changed: 27 additions & 0 deletions

File tree

.github/dependabot.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# SPDX-License-Identifier: PMPL-1.0-or-later
2+
# Dependabot configuration — adopts the corrected RSR template approach
3+
# (open-pull-requests-limit: 10 on cargo, grouped minor/patch).
4+
5+
version: 2
6+
updates:
7+
- package-ecosystem: "github-actions"
8+
directory: "/"
9+
schedule:
10+
interval: "weekly"
11+
groups:
12+
actions:
13+
patterns:
14+
- "*"
15+
16+
- package-ecosystem: "cargo"
17+
directory: "/"
18+
schedule:
19+
interval: "weekly"
20+
open-pull-requests-limit: 10
21+
groups:
22+
cargo:
23+
patterns:
24+
- "*"
25+
update-types:
26+
- "minor"
27+
- "patch"

0 commit comments

Comments
 (0)