From 301829fd96ac9434f88f41b59b008bf3abc6fdcc Mon Sep 17 00:00:00 2001 From: mus65 Date: Sun, 2 Feb 2025 18:41:14 +0100 Subject: [PATCH] Configure Dependabot to also update NuGet and GitHub Actions (#1581) * Configure Dependabot to also update NuGet and GitHub Actions * ignore some NuGet dependencies --- .github/dependabot.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 61be4da6..c41221ec 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -9,3 +9,21 @@ updates: directory: "/test/Renci.SshNet.IntegrationTests/" schedule: interval: "weekly" + + - package-ecosystem: "nuget" + directory: "/" + schedule: + interval: "weekly" + ignore: + # AsyncInterface must stay at 1.0.0 because of https://github.com/sshnet/SSH.NET/pull/1288 + - dependency-name: "Microsoft.Bcl.AsyncInterfaces" + # These should stay on LTS .NET Releases + - dependency-name: "System.Formats.Asn1" + update-types: ["version-update:semver-major"] + - dependency-name: "Microsoft.Extensions.Logging.*" + update-types: ["version-update:semver-major"] + + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly"