From 7ff5e1f0eeac0686304f24483b247d5ac7db59b0 Mon Sep 17 00:00:00 2001 From: amd64fox <62529699+amd64fox@users.noreply.github.com> Date: Mon, 27 Oct 2025 20:47:54 +0300 Subject: [PATCH] Update GitHub Actions to use stable Rust and Windows 2022 --- .github/workflows/build-to-release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-to-release.yml b/.github/workflows/build-to-release.yml index b01ea76..bba6469 100644 --- a/.github/workflows/build-to-release.yml +++ b/.github/workflows/build-to-release.yml @@ -5,7 +5,7 @@ on: jobs: build: - runs-on: windows-latest + runs-on: windows-2022 strategy: matrix: include: @@ -22,7 +22,7 @@ jobs: - name: Install Rust toolchain and target uses: actions-rs/toolchain@v1 with: - toolchain: nightly + toolchain: stable profile: minimal override: true target: ${{ matrix.rust_target }}