Skip to content

Refine Dependabot config to not update rust-toolchain #1364

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@ updates:
directory: "/"
schedule:
interval: weekly
ignore:
# Ignore version updates to dtolnay/rust-toolchain, as @X.Y.Z tags are used for exact toolchain
# versions (and @master and @stable are branches). To still get Dependabot *security* updates
# if the action itself ever has an advisory, we list all version update types explicitly. See:
# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
dependency-name: dtolnay/rust-toolchain
update-types:
- "version-update:semver-major"
- "version-update:semver-minor"
- "version-update:semver-patch"
groups:
github-actions:
patterns: ["*"]
Loading