From 992e5919384f026611575b68b9792ae4ffb4fb58 Mon Sep 17 00:00:00 2001 From: mat Date: Wed, 4 Mar 2026 23:23:11 -0500 Subject: [PATCH] =?UTF-8?q?fix(ci):=20remove=20setup-dotnet=20from=20test?= =?UTF-8?q?=20workflow=20=E2=80=94=20ARC=20runners=20have=20.NET=2010=20pr?= =?UTF-8?q?e-installed?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit setup-dotnet fails on self-hosted ARC runners because it cannot write to /usr/share/dotnet (permission denied). The runner images already have .NET 10 SDK installed in DOTNET_ROOT. Remove the step entirely. --- .github/workflows/ci-tests.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-tests.yml b/.github/workflows/ci-tests.yml index 7d34c8357..526aa995b 100644 --- a/.github/workflows/ci-tests.yml +++ b/.github/workflows/ci-tests.yml @@ -17,9 +17,8 @@ jobs: steps: - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 - - uses: actions/setup-dotnet@2016bd2012dba4e32de620c46fe006a3ac9f0602 # v5.0.1 - with: - dotnet-version: ${{ env.SDK_VERSION }} + # setup-dotnet omitted — self-hosted ARC runners already have .NET 10 installed + # setup-dotnet fails on these runners (cannot write to /usr/share/dotnet) - name: Run DotNet CLI Tests run: >