From 00aca58f4f152352d7ee7e855031cd642268d212 Mon Sep 17 00:00:00 2001 From: binarylab2022-del Date: Tue, 21 Jul 2026 01:05:20 +0100 Subject: [PATCH] Modernize build workflow actions --- .github/workflows/build.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a6ed6dc..154bb60 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -14,7 +14,7 @@ jobs: name: Native core tests runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 - name: Configure run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Release - name: Build @@ -26,17 +26,17 @@ jobs: name: Windows x64 solution runs-on: windows-2025-vs2026 steps: - - uses: actions/checkout@v4 - - uses: actions/setup-dotnet@v5 + - uses: actions/checkout@v7 + - uses: actions/setup-dotnet@v6 with: dotnet-version: 10.0.x - - uses: microsoft/setup-msbuild@v2 + - uses: microsoft/setup-msbuild@v3 - name: Restore and build run: msbuild ChessProject.slnx /restore /m /p:Configuration=Release /p:Platform=x64 - name: Run native regressions run: .\bin\x64\Release\WinChessCoreTests.exe - name: Upload build outputs - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: WinChess-windows-x64 if-no-files-found: error