1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# Dependabot — automated dependency-update PRs.
# https://docs.github.com/code-security/dependabot/dependabot-version-updates
#
# Weekly cadence, minor+patch grouped into a single PR per ecosystem to cut PR
# noise (majors stay separate so breaking bumps get individual review).
version: 2
updates:
# --- Rust (root Cargo.toml / Cargo.lock) ---------------------------------
- package-ecosystem: cargo
directory: "/"
schedule:
interval: weekly
open-pull-requests-limit: 5
commit-message:
prefix: "deps(cargo)"
groups:
cargo-minor-patch:
update-types:
# --- OAuth sidecar (Node/npm) --------------------------------------------
- package-ecosystem: npm
directory: "/oauth-sidecar"
schedule:
interval: weekly
open-pull-requests-limit: 5
commit-message:
prefix: "deps(npm)"
groups:
npm-minor-patch:
update-types:
# --- GitHub Actions (workflow `uses:` pins) ------------------------------
- package-ecosystem: github-actions
directory: "/"
schedule:
interval: weekly
open-pull-requests-limit: 5
commit-message:
prefix: "deps(actions)"
groups:
actions-minor-patch:
update-types:
# --- Docker (deploy/) ----------------------------------------------------
# ENABLE ONCE a Dockerfile lands under deploy/ (there is only teardown.sh
# today). Uncomment and point `directory` at the Dockerfile's dir. Left in as
# a documented placeholder so the wiring is one uncomment away.
# - package-ecosystem: docker
# directory: "/deploy"
# schedule:
# interval: weekly
# open-pull-requests-limit: 3
# commit-message:
# prefix: "deps(docker)"
# groups:
# docker-minor-patch:
# update-types: [minor, patch]