@@ -88,10 +88,10 @@ jobs:
88
88
89
89
steps :
90
90
- name : Checkout
91
- uses : actions/checkout@v3
91
+ uses : actions/checkout@v4
92
92
93
93
- name : Set up target Python
94
- uses : actions/setup-python@v4
94
+ uses : actions/setup-python@v5
95
95
with :
96
96
python-version : ${{ matrix.python }}
97
97
@@ -119,7 +119,7 @@ jobs:
119
119
python -m pytest --showlocals -vv --cov --cov-report=xml
120
120
121
121
- name : Upload coverage report
122
- uses : codecov/codecov-action@v3
122
+ uses : codecov/codecov-action@v4
123
123
if : ${{ always() }}
124
124
125
125
msvc :
@@ -134,10 +134,10 @@ jobs:
134
134
135
135
steps :
136
136
- name : Checkout
137
- uses : actions/checkout@v3
137
+ uses : actions/checkout@v4
138
138
139
139
- name : Set up target Python
140
- uses : actions/setup-python@v4
140
+ uses : actions/setup-python@v5
141
141
with :
142
142
python-version : ${{ matrix.python }}
143
143
@@ -172,7 +172,7 @@ jobs:
172
172
173
173
steps :
174
174
- name : Checkout
175
- uses : actions/checkout@v3
175
+ uses : actions/checkout@v4
176
176
177
177
- name : Setup Cygwin
178
178
uses : cygwin/cygwin-install-action@v2
@@ -207,7 +207,7 @@ jobs:
207
207
# Cygwin Python cannot use binary wheels from PyPI. Building
208
208
# some dependencies takes considerable time. Caching the built
209
209
# wheels speeds up the CI job quite a bit.
210
- uses : actions/cache@v3
210
+ uses : actions/cache@v4
211
211
with :
212
212
path : ${{ steps.pip-cache-path.outputs.path }}
213
213
key : cygwin-pip-${{ github.sha }}
@@ -248,7 +248,7 @@ jobs:
248
248
249
249
steps :
250
250
- name : Checkout
251
- uses : actions/checkout@v3
251
+ uses : actions/checkout@v4
252
252
253
253
- name : Install pyston
254
254
run : |
@@ -282,7 +282,7 @@ jobs:
282
282
283
283
steps :
284
284
- name : Checkout
285
- uses : actions/checkout@v3
285
+ uses : actions/checkout@v4
286
286
287
287
- name : Install Homebrew Python
288
288
run : |
@@ -311,10 +311,10 @@ jobs:
311
311
runs-on : ubuntu-latest
312
312
steps :
313
313
- name : Checkout
314
- uses : actions/checkout@v3
314
+ uses : actions/checkout@v4
315
315
316
316
- name : Setup Python
317
- uses : actions/setup-python@v4
317
+ uses : actions/setup-python@v5
318
318
with :
319
319
python-version : 3.9
320
320
0 commit comments