From 22c58e93735c2b0b99d7023c943f53b57897c3d9 Mon Sep 17 00:00:00 2001 From: Fredrik Forsmo Date: Wed, 14 Jan 2026 21:23:54 +0100 Subject: [PATCH 1/2] chore: test with dotnet 10 instead of 9 --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 94b2776..0d7aee1 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -16,10 +16,10 @@ jobs: uses: actions/setup-dotnet@v5 with: dotnet-version: '8.0.x' - - name: Set up dotnet 9 + - name: Set up dotnet 10 uses: actions/setup-dotnet@v5 with: - dotnet-version: '9.0.x' + dotnet-version: '10.0.x' - name: Build run: dotnet build - name: Run test suite From 85282970cc753a2bde9df185bba4971a008e9a7f Mon Sep 17 00:00:00 2001 From: Fredrik Forsmo Date: Wed, 14 Jan 2026 21:29:53 +0100 Subject: [PATCH 2/2] chore: update analysis dotnet version --- .github/workflows/analysis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/analysis.yml b/.github/workflows/analysis.yml index b680927..3b1cb75 100644 --- a/.github/workflows/analysis.yml +++ b/.github/workflows/analysis.yml @@ -36,7 +36,7 @@ jobs: uses: actions/setup-dotnet@v5 with: dotnet-version: | - 9.0.x + 10.0.x # If this run was triggered by a pull request event, then checkout # the head of the pull request instead of the merge commit.