Skip to content

Commit 301829f

Browse files
authored
Configure Dependabot to also update NuGet and GitHub Actions (#1581)
* Configure Dependabot to also update NuGet and GitHub Actions * ignore some NuGet dependencies
1 parent 9c454ba commit 301829f

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/dependabot.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,21 @@ updates:
99
directory: "/test/Renci.SshNet.IntegrationTests/"
1010
schedule:
1111
interval: "weekly"
12+
13+
- package-ecosystem: "nuget"
14+
directory: "/"
15+
schedule:
16+
interval: "weekly"
17+
ignore:
18+
# AsyncInterface must stay at 1.0.0 because of https://github.com/sshnet/SSH.NET/pull/1288
19+
- dependency-name: "Microsoft.Bcl.AsyncInterfaces"
20+
# These should stay on LTS .NET Releases
21+
- dependency-name: "System.Formats.Asn1"
22+
update-types: ["version-update:semver-major"]
23+
- dependency-name: "Microsoft.Extensions.Logging.*"
24+
update-types: ["version-update:semver-major"]
25+
26+
- package-ecosystem: "github-actions"
27+
directory: "/"
28+
schedule:
29+
interval: "weekly"

0 commit comments

Comments
 (0)