2020 # Disable for platforms where pure Python wheels would be generated
2121 cibw_skip : [ "pp38-* pp39-* pp310-* pp311-*" ]
2222 steps :
23- - uses : actions/checkout@v3
23+ - uses : actions/checkout@v4
2424
25- - uses : actions/setup-python@v4
25+ - uses : actions/setup-python@v5
2626 name : Install Python
2727 with :
2828 python-version : ${{ matrix.python }}
@@ -47,15 +47,15 @@ jobs:
4747 CIBW_ARCHS_LINUX : " auto aarch64"
4848 run : python -m cibuildwheel
4949
50- - uses : actions/upload-artifact@v3
50+ - uses : actions/upload-artifact@v4
5151 with :
5252 path : ./wheelhouse/*.whl
5353
5454 build_macos_wheels :
5555 name : Build macos wheels (cross-compiles arm64)
5656 runs-on : macos-13
5757 steps :
58- - uses : actions/checkout@v3
58+ - uses : actions/checkout@v4
5959
6060 - uses : actions/setup-python@v4
6161 name : Install Python
7272 CIBW_ARCHS_MACOS : " x86_64 arm64"
7373 run : python -m cibuildwheel
7474
75- - uses : actions/upload-artifact@v3
75+ - uses : actions/upload-artifact@v4
7676 with :
7777 path : ./wheelhouse/*.whl
7878
8383 matrix :
8484 python : [3.9]
8585 steps :
86- - uses : actions/checkout@v3
86+ - uses : actions/checkout@v4
8787
88- - uses : actions/setup-python@v4
88+ - uses : actions/setup-python@v5
8989 name : Install Python
9090 with :
9191 python-version : ${{ matrix.python-version }}
@@ -106,17 +106,17 @@ jobs:
106106 name : Build source distribution
107107 runs-on : ubuntu-20.04
108108 steps :
109- - uses : actions/checkout@v3
109+ - uses : actions/checkout@v4
110110
111- - uses : actions/setup-python@v3
111+ - uses : actions/setup-python@v5
112112 name : Install Python
113113 with :
114114 python-version : 3.9
115115
116116 - name : Build sdist
117117 run : python setup.py sdist
118118
119- - uses : actions/upload-artifact@v3
119+ - uses : actions/upload-artifact@v4
120120 with :
121121 path : dist/*.tar.gz
122122
@@ -125,7 +125,7 @@ jobs:
125125 runs-on : ubuntu-20.04
126126 steps :
127127 - name : Download distributions for publishing.
128- uses : actions/download-artifact@v3
128+ uses : actions/download-artifact@v4
129129 with :
130130 name : artifact
131131 path : dist
0 commit comments