From 08ef9c1963c4204ff2e9cb7fcaa6e305d69ffa65 Mon Sep 17 00:00:00 2001 From: Gustavo Paim Berned Date: Tue, 9 Jun 2026 10:12:41 -0300 Subject: [PATCH] Pin the windows runner version to 2022 Pin the 2022 version for windows runners because the most recent runner version does not support the Visual Studio 2022. --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d0512046..f39535fc 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -18,13 +18,13 @@ jobs: fail-fast: false matrix: python-version: ["3.12"] - os: [ubuntu-latest, windows-latest] + os: [ubuntu-latest, windows-2022] steps: - uses: actions/checkout@v2 with: lfs: true - - uses: ilammy/msvc-dev-cmd@v1.13.0 + - uses: ilammy/msvc-dev-cmd@v1 with: vsversion: "2022" - name: Set up Python ${{ matrix.python-version }}