77 runs-on : ubuntu-latest
88 timeout-minutes : 30
99 steps :
10- - uses : actions/checkout@v4
10+ - uses : actions/checkout@v6
1111 with :
1212 fetch-depth : 0
13- - uses : actions/setup-java@v4
13+ - uses : actions/setup-java@v5
1414 with :
1515 distribution : ' temurin'
1616 java-version : ' 17'
4949 - name : python wheels
5050 run :
5151 pwd && make distclean && bindings/python/build_wheels.py
52- - uses : actions/upload-artifact@v4
52+ - uses : actions/upload-artifact@v7
5353 with :
5454 name : artifact_linux
5555 path : |
6363 CC : clang
6464 CXX : clang++
6565 steps :
66- - uses : actions/checkout@v4
66+ - uses : actions/checkout@v6
6767 with :
6868 fetch-depth : 0
6969 - uses : actions/setup-python@v6
@@ -162,7 +162,7 @@ jobs:
162162 && cp -v $PWD/inst/lib/libmapper.*.dylib bindings/python/libmapper/libmapper.dylib
163163 && pip3 wheel bindings/python -w ./wheelhouse
164164 && unzip -t wheelhouse/*.whl
165- - uses : actions/upload-artifact@v4
165+ - uses : actions/upload-artifact@v7
166166 with :
167167 name : artifact_macos
168168 path : ./wheelhouse/*.whl
@@ -171,7 +171,7 @@ jobs:
171171 runs-on : windows-latest
172172 timeout-minutes : 20
173173 steps :
174- - uses : actions/checkout@v4
174+ - uses : actions/checkout@v6
175175 with :
176176 fetch-depth : 0
177177 - uses : actions/setup-python@v6
@@ -185,7 +185,7 @@ jobs:
185185 run : .\windows_build.ps1
186186 - name : Build python wheel
187187 run : .\bindings\python\windows_build_wheel.ps1
188- - uses : actions/upload-artifact@v4
188+ - uses : actions/upload-artifact@v7
189189 with :
190190 name : artifact_windows
191191 path : ./bindings/python/dist/*.whl
@@ -199,15 +199,15 @@ jobs:
199199 with :
200200 python-version : ' 3.11'
201201 - name : download artifact
202- uses : actions/download-artifact@v4
202+ uses : actions/download-artifact@v8
203203 with :
204204 name : artifact_linux
205205 - name : install wheel
206206 run :
207207 ls
208208 && python3 -m pip install wheelhouse/libmapper*-py3-none-manylinux_2_24_x86_64.whl
209209 - name : checkout
210- uses : actions/checkout@v4
210+ uses : actions/checkout@v6
211211 with :
212212 fetch-depth : 0
213213 - name : run python tests
@@ -228,15 +228,15 @@ jobs:
228228 with :
229229 python-version : ' 3.11'
230230 - name : download artifact
231- uses : actions/download-artifact@v4
231+ uses : actions/download-artifact@v8
232232 with :
233233 name : artifact_macos
234234 - name : install wheel
235235 run :
236236 ls
237237 && python3 -m pip install libmapper*-py3-none-macosx_*_universal2.whl
238238 - name : checkout
239- uses : actions/checkout@v4
239+ uses : actions/checkout@v6
240240 with :
241241 fetch-depth : 0
242242 - name : run python tests
@@ -255,15 +255,15 @@ jobs:
255255 with :
256256 python-version : ' 3.11'
257257 - name : download artifact
258- uses : actions/download-artifact@v4
258+ uses : actions/download-artifact@v8
259259 with :
260260 name : artifact_windows
261261 - name : install wheel
262262 run :
263263 ls
264264 && python3 -m pip install libmapper-2.5.2-py3-none-win_amd64.whl
265265 - name : checkout
266- uses : actions/checkout@v4
266+ uses : actions/checkout@v6
267267 with :
268268 fetch-depth : 0
269269 - name : run python tests
0 commit comments