@@ -24,10 +24,10 @@ jobs:
2424 timeout-minutes : 20
2525 steps :
2626 - name : Check out code from GitHub
27- 27+ 2828 - name : Set up Python ${{ env.DEFAULT_PYTHON }}
2929 id : python
30- uses : actions/setup-python@v5.0 .0
30+ uses : actions/setup-python@v5.1 .0
3131 with :
3232 python-version : ${{ env.DEFAULT_PYTHON }}
3333 check-latest : true
3939 'requirements_full.txt', 'requirements_minimal.txt') }}" >> $GITHUB_OUTPUT
4040 - name : Restore Python virtual environment
4141 id : cache-venv
42- 42+ 4343 with :
4444 path : venv
4545 key : >-
5959 hashFiles('.pre-commit-config.yaml') }}" >> $GITHUB_OUTPUT
6060 - name : Restore pre-commit environment
6161 id : cache-precommit
62- 62+ 6363 with :
6464 path : ${{ env.PRE_COMMIT_CACHE }}
6565 key : >-
@@ -86,10 +86,10 @@ jobs:
8686 python-key : ${{ steps.generate-python-key.outputs.key }}
8787 steps :
8888 - name : Check out code from GitHub
89- 89+ 9090 - name : Set up Python ${{ matrix.python-version }}
9191 id : python
92- uses : actions/setup-python@v5.0 .0
92+ uses : actions/setup-python@v5.1 .0
9393 with :
9494 python-version : ${{ matrix.python-version }}
9595 check-latest : true
@@ -106,7 +106,7 @@ jobs:
106106 'requirements_full.txt', 'requirements_minimal.txt') }}" >> $GITHUB_OUTPUT
107107 - name : Restore Python virtual environment
108108 id : cache-venv
109- 109+ 110110 with :
111111 path : venv
112112 key : >-
@@ -145,10 +145,10 @@ jobs:
145145 # Workaround to set correct temp directory on Windows
146146 # https://github.com/actions/virtual-environments/issues/712
147147 - name : Check out code from GitHub
148- 148+ 149149 - name : Set up Python ${{ matrix.python-version }}
150150 id : python
151- uses : actions/setup-python@v5.0 .0
151+ uses : actions/setup-python@v5.1 .0
152152 with :
153153 python-version : ${{ matrix.python-version }}
154154 check-latest : true
@@ -160,7 +160,7 @@ jobs:
160160 'requirements_full.txt', 'requirements_minimal.txt') }}" >> $GITHUB_OUTPUT
161161 - name : Restore Python virtual environment
162162 id : cache-venv
163- 163+ 164164 with :
165165 path : venv
166166 key : >-
@@ -195,10 +195,10 @@ jobs:
195195 python-version : ["pypy3.8", "pypy3.10"]
196196 steps :
197197 - name : Check out code from GitHub
198- 198+ 199199 - name : Set up Python ${{ matrix.python-version }}
200200 id : python
201- uses : actions/setup-python@v5.0 .0
201+ uses : actions/setup-python@v5.1 .0
202202 with :
203203 python-version : ${{ matrix.python-version }}
204204 check-latest : true
@@ -210,7 +210,7 @@ jobs:
210210 }}" >> $GITHUB_OUTPUT
211211 - name : Restore Python virtual environment
212212 id : cache-venv
213- 213+ 214214 with :
215215 path : venv
216216 key : >-
@@ -241,17 +241,17 @@ jobs:
241241 needs : ["tests-linux", "tests-windows", "tests-pypy"]
242242 steps :
243243 - name : Check out code from GitHub
244- 244+ 245245 - name : Set up Python 3.12
246246 id : python
247- uses : actions/setup-python@v5.0 .0
247+ uses : actions/setup-python@v5.1 .0
248248 with :
249249 python-version : " 3.12"
250250 check-latest : true
251251 - name : Install dependencies
252252 run : pip install -U -r requirements_minimal.txt
253253 - name : Download all coverage artifacts
254- 254+ 255255 - name : Combine Linux coverage results
256256 run : |
257257 coverage combine coverage-linux*/.coverage
0 commit comments