From 9e1564210ad2800a0778ea9b96d2bc188b56c30b Mon Sep 17 00:00:00 2001 From: Mirko Galimberti Date: Wed, 6 Dec 2023 22:38:14 +0100 Subject: [PATCH] Add Python 3.12 to matrix for angle and update Github Actions for related jobs --- .github/workflows/windows_angle_wheels.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/windows_angle_wheels.yml b/.github/workflows/windows_angle_wheels.yml index f502a65..b8bf07c 100644 --- a/.github/workflows/windows_angle_wheels.yml +++ b/.github/workflows/windows_angle_wheels.yml @@ -24,7 +24,7 @@ jobs: env: DEPOT_TOOLS_WIN_TOOLCHAIN: 0 steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v4 - name: Get dependecies run: | . .\ci\windows_ci.ps1 @@ -33,7 +33,7 @@ jobs: run: | . .\ci\windows_ci.ps1 Build-angle - - uses: actions/upload-artifact@v1 + - uses: actions/upload-artifact@v3 with: name: angle_dlls path: angle_dlls @@ -45,14 +45,14 @@ jobs: strategy: fail-fast: false matrix: - python: [ '3.7', '3.8', '3.9', '3.10', '3.11' ] + python: [ '3.7', '3.8', '3.9', '3.10', '3.11', '3.12' ] arch: ['x64', 'x86'] env: PACKAGE_ARCH: ${{ matrix.arch }} steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v4 - name: Set up Python - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python }} architecture: ${{ matrix.arch }} @@ -60,7 +60,7 @@ jobs: run: | . .\ci\windows_ci.ps1 Prepre-env - - uses: actions/download-artifact@v1 + - uses: actions/download-artifact@v3 with: name: angle_dlls - name: Build package @@ -68,7 +68,7 @@ jobs: . .\ci\windows_ci.ps1 Create-Packages - name: Upload wheels as artifact - uses: actions/upload-artifact@master + uses: actions/upload-artifact@v3 with: name: angle_wheels path: dist