From 54316d186ddac5c89f328462a81b76da449d5917 Mon Sep 17 00:00:00 2001 From: Nick Evans <2616208+nickevansuk@users.noreply.github.com> Date: Tue, 6 Aug 2024 20:04:00 +0100 Subject: [PATCH] Update openactive-test-suite.yml --- .github/workflows/openactive-test-suite.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/openactive-test-suite.yml b/.github/workflows/openactive-test-suite.yml index e74348af..ab1b80c3 100644 --- a/.github/workflows/openactive-test-suite.yml +++ b/.github/workflows/openactive-test-suite.yml @@ -178,8 +178,9 @@ jobs: needs: - test-server - test-fake-database - # runs on an Windows 2019 virtual machine, not an Ubuntu machine - runs-on: windows-2019 + + # runs on an Windows virtual machine, not an Ubuntu machine (latest is used to force failure if dependencies become outdated) + runs-on: windows-latest strategy: fail-fast: false @@ -209,9 +210,9 @@ jobs: # Building and deploying Framework is done using `msbuild` as opposed to `dotnet build`/`dotnet run`. It is started # using IIS Express - name: Setup MSBuild path - uses: microsoft/setup-msbuild@v1.0.2 + uses: microsoft/setup-msbuild@v2 - name: Setup NuGet - uses: NuGet/setup-nuget@v1.0.5 + uses: NuGet/setup-nuget@v2 - name: Install OpenActive.Server.NET dependencies run: nuget restore .\server\ - name: Build .NET Framework Reference Implementation