From 794794afe4f3c7482f3e618df08adbc71fdcb53c Mon Sep 17 00:00:00 2001 From: David Kaya Date: Tue, 7 Apr 2026 18:54:03 +0200 Subject: [PATCH] fix(ci): update .NET SDK version to 10.0.x to match sidecar target framework The sidecar projects were updated to target net10.0 but the CI workflow still installed dotnet-version 9.0.x, causing all validate jobs to fail at the sidecar test step. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7e873b8..5a04034 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -40,7 +40,7 @@ jobs: - name: Set up .NET uses: actions/setup-dotnet@v4 with: - dotnet-version: 9.0.x + dotnet-version: 10.0.x - name: Install Linux native dependencies if: runner.os == 'Linux' @@ -115,7 +115,7 @@ jobs: - name: Set up .NET uses: actions/setup-dotnet@v4 with: - dotnet-version: 9.0.x + dotnet-version: 10.0.x - name: Install Linux native dependencies if: runner.os == 'Linux'