From dd5b92de1c4675598d033835f768d7c9b439d128 Mon Sep 17 00:00:00 2001 From: Mirko Galimberti Date: Wed, 6 Dec 2023 22:19:59 +0100 Subject: [PATCH] [publish glew win] Add Python `3.12` to matrix for `glew` and update Github Actions for related jobs (#98) --- .github/workflows/windows_glew_wheels.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/windows_glew_wheels.yml b/.github/workflows/windows_glew_wheels.yml index a227e18..76f0101 100644 --- a/.github/workflows/windows_glew_wheels.yml +++ b/.github/workflows/windows_glew_wheels.yml @@ -26,13 +26,13 @@ jobs: 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: 3.x - name: Cache deps - uses: actions/cache@v1 + uses: actions/cache@v3 with: path: kivy_build_cache key: cache-packages-glew-${{ matrix.arch }}-${{ hashFiles('win/glew.py') }} @@ -51,19 +51,19 @@ 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 }} - name: Cache deps - uses: actions/cache@v1 + uses: actions/cache@v3 with: path: kivy_build_cache key: cache-packages-glew-${{ matrix.arch }}-${{ hashFiles('win/glew.py') }}