From 21d2c0ad10faf6548d0b38e8d7267de9fd3ecfe9 Mon Sep 17 00:00:00 2001 From: Lucas Nicodemus Date: Fri, 25 Feb 2022 01:23:07 -0800 Subject: [PATCH] Switch GitHub Actions runner to use windows-2019 GitHub is apparently in a 4-week migration to switch to Windows Server 2022 instead of Windows Server 2019 for `windows-latest` tags, and we've been caught in the middle of the transition with a Terraria update. Rather than trying to update our build scripts to run on 2022, this temporarily downgrades us to Windows Server 2019 so we can actually update Terraria and not windows. --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8173267b..fda7514d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -4,7 +4,7 @@ on: [push, pull_request] jobs: build: - runs-on: windows-latest + runs-on: windows-2019 strategy: matrix: mode: ["Debug", "Release"]