From 794afd2a2cf9887fc48645309695259780d905b3 Mon Sep 17 00:00:00 2001 From: Arash Badie-Modiri Date: Sat, 17 Feb 2024 16:15:46 +0200 Subject: [PATCH] update the job dependencies --- .github/workflows/build_wheels.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build_wheels.yml b/.github/workflows/build_wheels.yml index 9e86595..469c0d7 100644 --- a/.github/workflows/build_wheels.yml +++ b/.github/workflows/build_wheels.yml @@ -19,9 +19,11 @@ jobs: py: ["cp38-*", "cp39-*", "cp310-*", "cp311-*", "cp312-*"] steps: - - uses: actions/setup-python@v4 + - uses: actions/setup-python@v5 + with: + python-version: '3.11' - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Visual Studio shell on Windows uses: egor-tensin/vs-shell@v2 @@ -50,6 +52,6 @@ jobs: CIBW_BUILD: ${{ matrix.py }} run: python -m cibuildwheel --output-dir wheelhouse - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: path: ./wheelhouse/*.whl