@@ -20,10 +20,10 @@ jobs:
2020    name : Build wheels on Linux 
2121    runs-on : ubuntu-latest 
2222    steps :
23-       - uses : actions/checkout@v3  
23+       - uses : actions/checkout@v5  
2424
2525      - name : Set up Python 
26-         uses : actions/setup-python@v4  
26+         uses : actions/setup-python@v6  
2727        with :
2828          python-version : " >=3.11.0" 
2929
6161          python -m cibuildwheel --output-dir wheelhouse 
6262working-directory : ./quaddtype 
6363
64-       - uses : actions/upload-artifact@v4  
64+       - uses : actions/upload-artifact@v5  
6565        with :
6666          path : ./quaddtype/wheelhouse/*.whl 
6767          name : wheels-linux 
@@ -74,10 +74,10 @@ jobs:
7474        os : [macos-14, macos-15, macos-15-intel] 
7575
7676    steps :
77-       - uses : actions/checkout@v3  
77+       - uses : actions/checkout@v5  
7878
7979      - name : Set up Python 
80-         uses : actions/setup-python@v4  
80+         uses : actions/setup-python@v6  
8181        with :
8282          python-version : " >=3.11.0" 
8383
@@ -125,7 +125,7 @@ jobs:
125125          python -m cibuildwheel --output-dir wheelhouse 
126126working-directory : ./quaddtype 
127127
128-       - uses : actions/upload-artifact@v4  
128+       - uses : actions/upload-artifact@v5  
129129        with :
130130          path : ./quaddtype/wheelhouse/*.whl 
131131          name : wheels-${{ matrix.os }} 
@@ -139,15 +139,15 @@ jobs:
139139        architecture : [x64] 
140140
141141    steps :
142-       - uses : actions/checkout@v3  
142+       - uses : actions/checkout@v5  
143143
144144      - name : Setup MSVC 
145145        uses : ilammy/msvc-dev-cmd@v1 
146146        with :
147147          arch : ${{ matrix.architecture }} 
148148
149149      - name : Set up Python 
150-         uses : actions/setup-python@v4  
150+         uses : actions/setup-python@v6  
151151        with :
152152          python-version : " >=3.11.0" 
153153          architecture : ${{ matrix.architecture }} 
@@ -185,7 +185,7 @@ jobs:
185185          if (-not (Test-Path wheelhouse/*.whl)) { throw "Wheel was not created" } 
186186working-directory : ./quaddtype 
187187
188-       - uses : actions/upload-artifact@v4  
188+       - uses : actions/upload-artifact@v5  
189189        with :
190190          path : ./quaddtype/wheelhouse/*.whl 
191191          name : wheels-windows-${{ matrix.architecture }} 
@@ -194,10 +194,10 @@ jobs:
194194    name : Build SDist 
195195    runs-on : ubuntu-latest 
196196    steps :
197-       - uses : actions/checkout@v3  
197+       - uses : actions/checkout@v5  
198198
199199      - name : Set up Python 
200-         uses : actions/setup-python@v4  
200+         uses : actions/setup-python@v6  
201201        with :
202202          python-version : " >=3.11.0" 
203203
@@ -222,7 +222,7 @@ jobs:
222222working-directory : ./quaddtype 
223223
224224      - name : Upload SDist artifact 
225-         uses : actions/upload-artifact@v4  
225+         uses : actions/upload-artifact@v5  
226226        with :
227227          name : sdist 
228228          path : ./quaddtype/dist/*.tar.gz 
@@ -248,7 +248,7 @@ jobs:
248248
249249    steps :
250250      - name : Download all workflow run artifacts 
251-         uses : actions/download-artifact@v4  
251+         uses : actions/download-artifact@v6  
252252        with :
253253          pattern : " *" 
254254          path : dist 
0 commit comments