Skip to content

Commit 7266aa8

Browse files
committed
chore: update dependabot configuration
- Check github-actions updates. - Configure dependabot to send a weekly batch of updates. - Restrict to a semver-compatible changes in the lockfile. - Work around the issue with the `examples` package.
1 parent 467a7ff commit 7266aa8

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

.github/dependabot.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,19 @@
55

66
version: 2
77
updates:
8+
89
- package-ecosystem: "cargo"
910
directory: "/" # Location of package manifests
1011
schedule:
1112
interval: "weekly"
13+
groups:
14+
all-dependencies:
15+
patterns:
16+
- "*"
17+
# semver-incompatible updates will be handled manually
18+
versioning-strategy: "lockfile-only"
19+
20+
- package-ecosystem: "github-actions"
21+
directory: "/"
22+
schedule:
23+
interval: "weekly"

examples/Cargo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ license.workspace = true
77
homepage.workspace = true
88
repository.workspace = true
99
rust-version.workspace = true
10+
# https://github.com/dependabot/dependabot-core/issues/1156
11+
autobins = false
1012

1113
build = "../build.rs"
1214

0 commit comments

Comments
 (0)