Skip to content

Commit ca22ded

Browse files
committed
Fake a dependabot increase-if-necessary strategy
At the moment, the cargo ecosystem does not support the strategy directly, so I'm going to see if dependabot will allow multiple definitions for the same ecosystem in order to work around the problem. See: - https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#versioning-strategy - dependabot/dependabot-core#4009
1 parent 624f93d commit ca22ded

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/dependabot.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,17 @@ updates:
55
directory: /
66
schedule:
77
interval: weekly
8+
versioning-strategy: lockfile-only
9+
10+
- package-ecosystem: cargo
11+
directory: /
12+
schedule:
13+
interval: weekly
14+
ignore:
15+
- dependency-name: "*"
16+
update-types:
17+
- version-update:semver-patch
18+
- version-update:semver-minor
819

920
- package-ecosystem: github-actions
1021
directory: /

0 commit comments

Comments
 (0)