1- # This file is autogenerated by maturin v1.11.5
1+ # This file is autogenerated by maturin v1.12.6
22# To update, run
33#
44# maturin generate-ci github --pytest
4949 sccache : ${{ !startsWith(github.ref, 'refs/tags/') }}
5050 manylinux : auto
5151 - name : Upload wheels
52- uses : actions/upload-artifact@v5
52+ uses : actions/upload-artifact@v6
5353 with :
5454 name : wheels-linux-${{ matrix.platform.target }}
5555 path : dist
@@ -105,24 +105,22 @@ jobs:
105105 sccache : ${{ !startsWith(github.ref, 'refs/tags/') }}
106106 manylinux : musllinux_1_2
107107 - name : Upload wheels
108- uses : actions/upload-artifact@v5
108+ uses : actions/upload-artifact@v6
109109 with :
110110 name : wheels-musllinux-${{ matrix.platform.target }}
111111 path : dist
112112 - name : pytest
113113 if : ${{ startsWith(matrix.platform.target, 'x86_64') }}
114- uses : addnab/docker-run-action@v3
115- with :
116- image : alpine:latest
117- options : -v ${{ github.workspace }}:/io -w /io
118- run : |
119- set -e
114+ run : |
115+ set -e
116+ docker run --rm -v ${{ github.workspace }}:/io -w /io alpine:latest sh -c '
120117 apk add py3-pip py3-virtualenv
121118 python3 -m virtualenv .venv
122119 source .venv/bin/activate
123120 pip install cotengrust --no-index --find-links dist --force-reinstall
124121 pip install pytest
125122 pytest
123+ '
126124 - name : pytest
127125 if : ${{ !startsWith(matrix.platform.target, 'x86') }}
128126 uses : uraimo/run-on-arch-action@v2
@@ -167,7 +165,7 @@ jobs:
167165 args : --release --out dist --find-interpreter
168166 sccache : ${{ !startsWith(github.ref, 'refs/tags/') }}
169167 - name : Upload wheels
170- uses : actions/upload-artifact@v5
168+ uses : actions/upload-artifact@v6
171169 with :
172170 name : wheels-windows-${{ matrix.platform.target }}
173171 path : dist
@@ -202,7 +200,7 @@ jobs:
202200 args : --release --out dist --find-interpreter
203201 sccache : ${{ !startsWith(github.ref, 'refs/tags/') }}
204202 - name : Upload wheels
205- uses : actions/upload-artifact@v5
203+ uses : actions/upload-artifact@v6
206204 with :
207205 name : wheels-macos-${{ matrix.platform.target }}
208206 path : dist
@@ -225,7 +223,7 @@ jobs:
225223 command : sdist
226224 args : --out dist
227225 - name : Upload sdist
228- uses : actions/upload-artifact@v5
226+ uses : actions/upload-artifact@v6
229227 with :
230228 name : wheels-sdist
231229 path : dist
@@ -243,7 +241,7 @@ jobs:
243241 # Used to generate artifact attestation
244242 attestations : write
245243 steps :
246- - uses : actions/download-artifact@v6
244+ - uses : actions/download-artifact@v7
247245 - name : Generate artifact attestation
248246 uses : actions/attest-build-provenance@v3
249247 with :
0 commit comments