From b0ec93d3a6005169be2aef13f12bfd26fffda86e Mon Sep 17 00:00:00 2001 From: Dimitris Panokostas Date: Thu, 15 Jan 2026 17:14:25 +0100 Subject: [PATCH] Change build runner to 'windows-latest' and clean up Updated the workflow to use 'windows-latest' instead of 'windows-2026' for building WinUAE binaries. Removed the VS version specification for MSBuild setup. --- .github/workflows/build-winuae-binary.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build-winuae-binary.yml b/.github/workflows/build-winuae-binary.yml index 02f46179..4cdcc61c 100644 --- a/.github/workflows/build-winuae-binary.yml +++ b/.github/workflows/build-winuae-binary.yml @@ -14,7 +14,7 @@ env: jobs: Build-WinUAE-32bit-binary: - runs-on: windows-2026 + runs-on: windows-latest steps: - uses: actions/checkout@v4 @@ -32,8 +32,6 @@ jobs: - name: Add MSBuild to PATH uses: microsoft/setup-msbuild@v2 - with: - vs-version: '18.0' - name: Diagnostics (MSBuild) shell: powershell @@ -80,7 +78,7 @@ jobs: path: D:\\Amiga Build-WinUAE-64bit-binary: - runs-on: windows-2026 + runs-on: windows-latest steps: - uses: actions/checkout@v4 @@ -98,8 +96,6 @@ jobs: - name: Add MSBuild to PATH uses: microsoft/setup-msbuild@v2 - with: - vs-version: '18.0' - name: Diagnostics (MSBuild) shell: powershell -- 2.47.3