From 2fa47434173b551ef0a32801d9a98542f0960e58 Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Thu, 27 Apr 2023 15:47:05 +1000 Subject: [PATCH] chore: build windows bins on windows-2022 --- .github/workflows/build-binaries.yml | 4 ++-- .github/workflows/pull-request.yml | 4 ++-- .github/workflows/release.yml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build-binaries.yml b/.github/workflows/build-binaries.yml index 50ceeae78..a5a438b05 100644 --- a/.github/workflows/build-binaries.yml +++ b/.github/workflows/build-binaries.yml @@ -15,7 +15,7 @@ jobs: strategy: fail-fast: false matrix: - os: [windows-2019, macos-latest, ubuntu-20.04] + os: [windows-2022, macos-latest, ubuntu-20.04] env: SIGNAL_ENV: production GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -47,7 +47,7 @@ jobs: # Not having this will break the windows build because the PATH won't be set by msbuild. - name: Add msbuild to PATH - uses: microsoft/setup-msbuild@v1.1 + uses: microsoft/setup-msbuild@v1.3.1 if: runner.os == 'Windows' - name: Setup node for windows diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 1eca8ba2f..c274ae199 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -12,7 +12,7 @@ jobs: strategy: fail-fast: false matrix: - os: [windows-2019, macos-latest, ubuntu-20.04] + os: [windows-2022, macos-latest, ubuntu-20.04] env: SIGNAL_ENV: production GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -43,7 +43,7 @@ jobs: #Not having this will break the windows build because the PATH won't be set by msbuild. - name: Add msbuild to PATH - uses: microsoft/setup-msbuild@v1.1 + uses: microsoft/setup-msbuild@v1.3.1 if: runner.os == 'Windows' - name: Setup node for windows diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index fb362ef0c..66bb0ad5a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,7 +12,7 @@ jobs: strategy: fail-fast: false matrix: - os: [windows-2019, macos-latest, ubuntu-20.04] + os: [windows-2022, macos-latest, ubuntu-20.04] env: SIGNAL_ENV: production GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -44,7 +44,7 @@ jobs: #Not having this will break the windows build because the PATH won't be set by msbuild. - name: Add msbuild to PATH - uses: microsoft/setup-msbuild@v1.1 + uses: microsoft/setup-msbuild@v1.3.1 if: runner.os == 'Windows' - name: Setup node for windows