diff --git a/.github/workflows/buildwheels.yml b/.github/workflows/buildwheels.yml
index 88c2c4ae5b..4e9194a8db 100644
--- a/.github/workflows/buildwheels.yml
+++ b/.github/workflows/buildwheels.yml
@@ -29,17 +29,20 @@ jobs:
     steps:
       - uses: actions/checkout@v2
 
-      - uses: actions/setup-python@v2
-        with:
-          python-version: 3.11
+      # - uses: actions/setup-python@v2
+      #   with:
+      #     python-version: 3.11
 
-      - name: Setup pip
-        run: |
-          python -m pip install --upgrade pip
-          python -m pip install cibuildwheel
+      # - name: Setup pip
+      #   run: |
+      #     python -m pip install --upgrade pip
+      #     python -m pip install cibuildwheel
 
-      - name: Build wheel
-        run: python -m cibuildwheel --output-dir dist/
+      # - name: Build wheel
+      #   run: python -m cibuildwheel --output-dir dist/
+      - name: Build wheels
+        uses: uses: pypa/cibuildwheel@v2.20.0
+        output-dir: dist
         env:
           CIBW_BUILD: cp311-manylinux_x86_64
           CIBW_SKIP: "*-win32 *-manylinux_i686"