From 9e70995dbb98f32861dc29bf606dfd7eb00f6ada Mon Sep 17 00:00:00 2001 From: confused-Techie Date: Fri, 22 Sep 2023 17:58:36 -0700 Subject: [PATCH] Use `windows-2019` to get older Visual Studio Code; Revert Python pin --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ab3661616f..6be344404a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -10,7 +10,7 @@ on: env: # Variables needed for build information GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - PYTHON_VERSION: '3.10.10' + PYTHON_VERSION: '3.10' NODE_VERSION: 16 ROLLING_UPLOAD_TOKEN: ${{ secrets.ROLLING_RELEASE_UPLOAD_TOKEN }} # Below variables allow us to quickly control visual tests for each platform @@ -22,7 +22,7 @@ jobs: build: strategy: matrix: - os: [ ubuntu-latest, windows-latest, macos-latest ] + os: [ ubuntu-latest, windows-2019, macos-latest ] fail-fast: false runs-on: ${{ matrix.os }}