From ebc984058266239a2fc94a0d87901551f6430ff6 Mon Sep 17 00:00:00 2001 From: Raghu Date: Thu, 9 Jul 2026 09:46:22 +0100 Subject: [PATCH 1/2] CODE RUB: Bump dotnet.yml GitHub Actions to node-24 (checkout@v5, setup-dotnet@v5) and .NET 10 SDK --- .github/workflows/dotnet.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 0bfc8aa..6b0641f 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -15,11 +15,11 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v5 - name: Setup .NET - uses: actions/setup-dotnet@v3 + uses: actions/setup-dotnet@v5 with: - dotnet-version: 8.0.x + dotnet-version: 10.0.x - name: Restore dependencies run: dotnet restore - name: Build From 0dc0e82bc91fe61aa5c5685156db6b99336d0b5f Mon Sep 17 00:00:00 2001 From: Raghu Date: Thu, 30 Jul 2026 10:28:52 +0100 Subject: [PATCH 2/2] CONFIG: lock FluentAssertions in Dependabot config (ignore 8.x/9.x/10.x) --- .github/dependabot.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index b83e6ed..a6e609e 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -14,3 +14,6 @@ updates: - ".NET" # Limit the number of open pull requests for NuGet updates open-pull-requests-limit: 10 + ignore: + - dependency-name: "FluentAssertions" + versions: ["8.x", "9.x", "10.x", "*"]