From 96f2f361222dd9ed6d431abed69278ce16f1776f Mon Sep 17 00:00:00 2001 From: Friedrich von Never Date: Sun, 23 Nov 2025 17:57:10 +0100 Subject: [PATCH] CI: workaround for https://github.com/actions/runner-images/issues/13341 --- .github/workflows/main.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index e6a73a9e..1586af6c 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -32,7 +32,9 @@ jobs: uses: actions/setup-dotnet@v5 with: dotnet-version: 9.0.x - - name: NuGet cache + - if: runner.os != 'macOS' # TODO: Re-enable this back after https://github.com/actions/runner-images/issues/13341 + # is resolved. + name: NuGet cache uses: actions/cache@v4 with: path: ${{ env.NUGET_PACKAGES }}