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
version: 2
updates:
# Keep GitHub Actions pinned to up-to-date major versions.
# We intentionally track majors only (e.g. @v6) so minor/patch fixes flow
# automatically, but we skip major-version bumps since they tend to be
# breaking and we want to audit them by hand.
- package-ecosystem: github-actions
directory: /
schedule:
interval: weekly
day: monday
open-pull-requests-limit: 5
commit-message:
prefix: ci
include: scope
labels:
- dependencies
- ci
ignore:
- dependency-name: "*"
update-types:
# Keep cargo dependencies up to date. Group embedded-hal* / embassy-* /
# esp-* / defmt* so their bumps land as one PR each instead of N.
- package-ecosystem: cargo
directory: /
schedule:
interval: weekly
day: monday
open-pull-requests-limit: 5
commit-message:
prefix: deps
include: scope
labels:
- dependencies
- rust
groups:
embedded:
patterns:
- embedded-hal*
- embassy-*
esp:
patterns:
- esp-*
defmt:
patterns:
- defmt*
# Don't auto-bump the MSRV path — rust-version is a semver contract.
ignore:
- dependency-name: "*"
update-types: