3333 - uses : actions/checkout@v4
3434
3535 - name : Set up Python ${{ matrix.python-version }}
36- uses : actions/setup-python@v4
36+ uses : actions/setup-python@v5
3737 with :
3838 python-version : ${{ matrix.python-version }}
3939 allow-prereleases : true
4444 echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT
4545
4646 - name : Cache
47- uses : actions/cache@v3
47+ uses : actions/cache@v4
4848 with :
4949 path : ${{ steps.pip-cache.outputs.dir }}
5050 key :
6767 DB_PORT : 3306
6868
6969 - name : Upload coverage data
70- uses : actions/upload-artifact@v3
70+ uses : actions/upload-artifact@v4
7171 with :
7272 name : coverage-data
7373 path : " .coverage.*"
@@ -108,7 +108,7 @@ jobs:
108108 - uses : actions/checkout@v4
109109
110110 - name : Set up Python ${{ matrix.python-version }}
111- uses : actions/setup-python@v4
111+ uses : actions/setup-python@v5
112112 with :
113113 python-version : ${{ matrix.python-version }}
114114 allow-prereleases : true
@@ -119,7 +119,7 @@ jobs:
119119 echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT
120120
121121 - name : Cache
122- uses : actions/cache@v3
122+ uses : actions/cache@v4
123123 with :
124124 path : ${{ steps.pip-cache.outputs.dir }}
125125 key :
@@ -145,7 +145,7 @@ jobs:
145145 DB_PORT : 5432
146146
147147 - name : Upload coverage data
148- uses : actions/upload-artifact@v3
148+ uses : actions/upload-artifact@v4
149149 with :
150150 name : coverage-data
151151 path : " .coverage.*"
@@ -162,7 +162,7 @@ jobs:
162162 - uses : actions/checkout@v4
163163
164164 - name : Set up Python ${{ matrix.python-version }}
165- uses : actions/setup-python@v4
165+ uses : actions/setup-python@v5
166166 with :
167167 python-version : ${{ matrix.python-version }}
168168 allow-prereleases : true
@@ -173,7 +173,7 @@ jobs:
173173 echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT
174174
175175 - name : Cache
176- uses : actions/cache@v3
176+ uses : actions/cache@v4
177177 with :
178178 path : ${{ steps.pip-cache.outputs.dir }}
179179 key :
@@ -193,7 +193,7 @@ jobs:
193193 DB_NAME : " :memory:"
194194
195195 - name : Upload coverage data
196- uses : actions/upload-artifact@v3
196+ uses : actions/upload-artifact@v4
197197 with :
198198 name : coverage-data
199199 path : " .coverage.*"
@@ -204,15 +204,15 @@ jobs:
204204 needs : [sqlite, mysql, postgres]
205205 steps :
206206 - uses : actions/checkout@v4
207- - uses : actions/setup-python@v4
207+ - uses : actions/setup-python@v5
208208 with :
209209 # Use latest, so it understands all syntax.
210210 python-version : " 3.11"
211211
212212 - run : python -m pip install --upgrade coverage[toml]
213213
214214 - name : Download coverage data.
215- uses : actions/download-artifact@v3
215+ uses : actions/download-artifact@v4
216216 with :
217217 name : coverage-data
218218
@@ -223,7 +223,7 @@ jobs:
223223 python -m coverage report
224224
225225 - name : Upload HTML report if check failed.
226- uses : actions/upload-artifact@v3
226+ uses : actions/upload-artifact@v4
227227 with :
228228 name : html-report
229229 path : htmlcov
@@ -238,7 +238,7 @@ jobs:
238238 - uses : actions/checkout@v4
239239
240240 - name : Set up Python ${{ matrix.python-version }}
241- uses : actions/setup-python@v4
241+ uses : actions/setup-python@v5
242242 with :
243243 python-version : 3.8
244244
@@ -248,7 +248,7 @@ jobs:
248248 echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT
249249
250250 - name : Cache
251- uses : actions/cache@v3
251+ uses : actions/cache@v4
252252 with :
253253 path : ${{ steps.pip-cache.outputs.dir }}
254254 key :
0 commit comments