我正在使用 GitHubdependabot.yml,版本 2。
version: 2
updates:
# Nuget Packages
- package-ecosystem: "nuget"
directory: "/"
schedule:
interval: "monthly"
我试图弄清楚是否有可能配置它,只有当它们包含安全修复程序时才会更新依赖项,因为它可以为版本 1 完成
version: 1
update_configs:
- package_manager: "dotnet:nuget"
directory: "/"
update_schedule: "monthly"
allowed_updates:
- match:
update_type: "security"
让我知道您是否有同样的问题以及您是如何解决的。
谢谢