From be323d2715688669f0118faccc38c132f2073971 Mon Sep 17 00:00:00 2001 From: Marius Thesing Date: Sun, 2 Feb 2025 11:34:19 +0100 Subject: [PATCH 1/2] Configure Dependabot to also update NuGet and GitHub Actions --- .github/dependabot.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 61be4da6e..ce8fd158a 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -9,3 +9,13 @@ updates: directory: "/test/Renci.SshNet.IntegrationTests/" schedule: interval: "weekly" + + - package-ecosystem: "nuget" + directory: "/" + schedule: + interval: "weekly" + + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" From cef4ecd7b462a5d0ac84b4e0cbae8e3e87a77c8c Mon Sep 17 00:00:00 2001 From: Marius Thesing Date: Sun, 2 Feb 2025 11:52:07 +0100 Subject: [PATCH 2/2] ignore some NuGet dependencies --- .github/dependabot.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index ce8fd158a..c41221ec7 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -14,6 +14,14 @@ updates: 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: "/"