From 53ef5788fa518f2bac7832f8e4c0a08e81fbc95a Mon Sep 17 00:00:00 2001 From: martincostello Date: Fri, 26 Apr 2024 09:42:33 +0100 Subject: [PATCH 1/2] Empty commit Empty commit to use as a starting point. From d7bad630dddabcd33352e6671e9496925d58f945 Mon Sep 17 00:00:00 2001 From: martincostello Date: Fri, 26 Apr 2024 09:54:59 +0100 Subject: [PATCH 2/2] Install .NET 6 and 7 SDKs Explicitly install the .NET 6 and 7 SDKs, as the macOS 14 runner does not have .NET 6 installed. --- .github/workflows/build.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4bdcfefa790..8de4c19b042 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -51,6 +51,13 @@ jobs: with: fetch-depth: 0 + - name: Setup .NET SDKs + uses: actions/setup-dotnet@4d6c8fcf3c8f7a60068d26b594648e99df24cee3 # v4.0.0 + with: + dotnet-version: | + 6.0.x + 7.0.x + - name: Setup .NET SDK uses: actions/setup-dotnet@4d6c8fcf3c8f7a60068d26b594648e99df24cee3 # v4.0.0 id: setup-dotnet