@@ -88,10 +88,10 @@ jobs:
8888
8989 steps :
9090 - name : Checkout
91- uses : actions/checkout@v3
91+ uses : actions/checkout@v4
9292
9393 - name : Set up target Python
94- uses : actions/setup-python@v4
94+ uses : actions/setup-python@v5
9595 with :
9696 python-version : ${{ matrix.python }}
9797
@@ -119,7 +119,7 @@ jobs:
119119 python -m pytest --showlocals -vv --cov --cov-report=xml
120120
121121 - name : Upload coverage report
122- uses : codecov/codecov-action@v3
122+ uses : codecov/codecov-action@v4
123123 if : ${{ always() }}
124124
125125 msvc :
@@ -134,10 +134,10 @@ jobs:
134134
135135 steps :
136136 - name : Checkout
137- uses : actions/checkout@v3
137+ uses : actions/checkout@v4
138138
139139 - name : Set up target Python
140- uses : actions/setup-python@v4
140+ uses : actions/setup-python@v5
141141 with :
142142 python-version : ${{ matrix.python }}
143143
@@ -172,7 +172,7 @@ jobs:
172172
173173 steps :
174174 - name : Checkout
175- uses : actions/checkout@v3
175+ uses : actions/checkout@v4
176176
177177 - name : Setup Cygwin
178178 uses : cygwin/cygwin-install-action@v2
@@ -207,7 +207,7 @@ jobs:
207207 # Cygwin Python cannot use binary wheels from PyPI. Building
208208 # some dependencies takes considerable time. Caching the built
209209 # wheels speeds up the CI job quite a bit.
210- uses : actions/cache@v3
210+ uses : actions/cache@v4
211211 with :
212212 path : ${{ steps.pip-cache-path.outputs.path }}
213213 key : cygwin-pip-${{ github.sha }}
@@ -248,7 +248,7 @@ jobs:
248248
249249 steps :
250250 - name : Checkout
251- uses : actions/checkout@v3
251+ uses : actions/checkout@v4
252252
253253 - name : Install pyston
254254 run : |
@@ -282,7 +282,7 @@ jobs:
282282
283283 steps :
284284 - name : Checkout
285- uses : actions/checkout@v3
285+ uses : actions/checkout@v4
286286
287287 - name : Install Homebrew Python
288288 run : |
@@ -311,10 +311,10 @@ jobs:
311311 runs-on : ubuntu-latest
312312 steps :
313313 - name : Checkout
314- uses : actions/checkout@v3
314+ uses : actions/checkout@v4
315315
316316 - name : Setup Python
317- uses : actions/setup-python@v4
317+ uses : actions/setup-python@v5
318318 with :
319319 python-version : 3.9
320320
0 commit comments