@@ -22,13 +22,12 @@ jobs:
2222
2323 steps :
2424 - name : Check out the repo
25- uses : actions/checkout@v4
25+ uses : actions/checkout@v6
2626
2727 - name : Install uv version ${{ env.UV_VERSION }}
28- uses : astral-sh/setup-uv@v6
28+ uses : astral-sh/setup-uv@v7
2929 with :
3030 version : ${{ env.UV_VERSION }}
31- enable-cache : true
3231
3332 - name : Install python ${{ env.DEFAULT_PYTHON_VERSION }} using uv
3433 run : uv python install ${{ env.DEFAULT_PYTHON_VERSION }}
@@ -46,13 +45,12 @@ jobs:
4645
4746 steps :
4847 - name : Check out the repo
49- uses : actions/checkout@v4
48+ uses : actions/checkout@v6
5049
5150 - name : Install uv version ${{ env.UV_VERSION }}
52- uses : astral-sh/setup-uv@v6
51+ uses : astral-sh/setup-uv@v7
5352 with :
5453 version : ${{ env.UV_VERSION }}
55- enable-cache : true
5654
5755 - name : Install python ${{ env.DEFAULT_PYTHON_VERSION }} using uv
5856 run : uv python install ${{ env.DEFAULT_PYTHON_VERSION }}
@@ -91,13 +89,12 @@ jobs:
9189
9290 steps :
9391 - name : Check out the repo
94- uses : actions/checkout@v4
92+ uses : actions/checkout@v6
9593
9694 - name : Install uv version ${{ env.UV_VERSION }}
97- uses : astral-sh/setup-uv@v6
95+ uses : astral-sh/setup-uv@v7
9896 with :
9997 version : ${{ env.UV_VERSION }}
100- enable-cache : true
10198
10299 - name : Install python ${{ matrix.python }} using uv
103100 run : uv python install ${{ matrix.python }}
@@ -117,7 +114,7 @@ jobs:
117114 pytest -m 'not benchmark_suite' --junitxml=junit.xml -o junit_family=legacy
118115
119116 - name : Upload coverage data
120- uses : actions/upload-artifact@v4
117+ uses : actions/upload-artifact@v5
121118 with :
122119 name : coverage-data-${{ matrix.session }}-${{ matrix.os }}-${{ matrix.python}}
123120 include-hidden-files : true
@@ -135,13 +132,12 @@ jobs:
135132
136133 steps :
137134 - name : Check out the repo
138- uses : actions/checkout@v4
135+ uses : actions/checkout@v6
139136
140137 - name : Install uv version ${{ env.UV_VERSION }}
141- uses : astral-sh/setup-uv@v6
138+ uses : astral-sh/setup-uv@v7
142139 with :
143140 version : ${{ env.UV_VERSION }}
144- enable-cache : true
145141
146142 - name : Install python ${{ env.DEFAULT_PYTHON_VERSION }} using uv
147143 run : uv python install ${{ env.DEFAULT_PYTHON_VERSION }}
@@ -158,7 +154,7 @@ jobs:
158154 docs docs/_build
159155
160156 - name : Upload docs
161- uses : actions/upload-artifact@v4
157+ uses : actions/upload-artifact@v5
162158 with :
163159 name : docs
164160 path : docs/_build
@@ -170,13 +166,12 @@ jobs:
170166
171167 steps :
172168 - name : Check out the repo
173- uses : actions/checkout@v4
169+ uses : actions/checkout@v6
174170
175171 - name : Install uv version ${{ env.UV_VERSION }}
176- uses : astral-sh/setup-uv@v6
172+ uses : astral-sh/setup-uv@v7
177173 with :
178174 version : ${{ env.UV_VERSION }}
179- enable-cache : true
180175
181176 - name : Install python ${{ env.DEFAULT_PYTHON_VERSION }} using uv
182177 run : uv python install ${{ env.DEFAULT_PYTHON_VERSION }}
@@ -185,7 +180,7 @@ jobs:
185180 run : uv sync -p ${{ env.DEFAULT_PYTHON_VERSION }} --frozen --only-group test
186181
187182 - name : Download coverage data
188- uses : actions/download-artifact@v4
183+ uses : actions/download-artifact@v6
189184 with :
190185 pattern : coverage-data-*
191186 merge-multiple : true
0 commit comments