From bc9bd434e90e00dbaf931f991c7ee293a90470d2 Mon Sep 17 00:00:00 2001 From: Anton Volkov Date: Tue, 21 May 2024 16:58:02 +0200 Subject: [PATCH] Rolled back windows-latest usage --- .github/workflows/conda-package.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/conda-package.yml b/.github/workflows/conda-package.yml index e0716085e91a..968027cff5fc 100644 --- a/.github/workflows/conda-package.yml +++ b/.github/workflows/conda-package.yml @@ -67,7 +67,7 @@ jobs: strategy: matrix: python: ['3.9', '3.10', '3.11'] - os: [ubuntu-20.04, windows-2019] + os: [ubuntu-20.04, windows-latest] permissions: # Needed to cancel any previous runs that are not completed for a given workflow @@ -77,7 +77,7 @@ jobs: defaults: run: - shell: ${{ matrix.os == 'windows-2019' && 'cmd /C CALL {0}' || 'bash -l {0}' }} + shell: ${{ matrix.os == 'windows-latest' && 'cmd /C CALL {0}' || 'bash -l {0}' }} continue-on-error: true @@ -253,11 +253,11 @@ jobs: python -m pytest -q -ra --disable-warnings -vv ${{ env.TEST_SCOPE }} test_windows: - name: Test ['windows-2019', python='${{ matrix.python }}'] + name: Test ['windows-latest', python='${{ matrix.python }}'] needs: build - runs-on: windows-2019 + runs-on: windows-latest defaults: run: @@ -409,7 +409,7 @@ jobs: strategy: matrix: python: ['3.9', '3.10', '3.11'] - os: [ubuntu-20.04, windows-2019] + os: [ubuntu-20.04, windows-latest] runs-on: ${{ matrix.os }}