@@ -30,10 +30,10 @@ jobs:
3030 - 3306:3306
3131
3232 steps :
33- - uses : actions/checkout@v2
33+ - uses : actions/checkout@v3
3434
3535 - name : Set up Python ${{ matrix.python-version }}
36- uses : actions/setup-python@v2
36+ uses : actions/setup-python@v4
3737 with :
3838 python-version : ${{ matrix.python-version }}
3939
4343 echo "::set-output name=dir::$(pip cache dir)"
4444
4545 - name : Cache
46- uses : actions/cache@v2
46+ uses : actions/cache@v3
4747 with :
4848 path : ${{ steps.pip-cache.outputs.dir }}
4949 key :
7171 DB_PORT : 3306
7272
7373 - name : Upload coverage data
74- uses : actions/upload-artifact@v2
74+ uses : actions/upload-artifact@v3
7575 with :
7676 name : coverage-data
7777 path : " .coverage.*"
@@ -101,10 +101,10 @@ jobs:
101101 --health-retries 5
102102
103103 steps :
104- - uses : actions/checkout@v2
104+ - uses : actions/checkout@v3
105105
106106 - name : Set up Python ${{ matrix.python-version }}
107- uses : actions/setup-python@v2
107+ uses : actions/setup-python@v4
108108 with :
109109 python-version : ${{ matrix.python-version }}
110110
@@ -114,7 +114,7 @@ jobs:
114114 echo "::set-output name=dir::$(pip cache dir)"
115115
116116 - name : Cache
117- uses : actions/cache@v2
117+ uses : actions/cache@v3
118118 with :
119119 path : ${{ steps.pip-cache.outputs.dir }}
120120 key :
@@ -140,7 +140,7 @@ jobs:
140140 DB_PORT : 5432
141141
142142 - name : Upload coverage data
143- uses : actions/upload-artifact@v2
143+ uses : actions/upload-artifact@v3
144144 with :
145145 name : coverage-data
146146 path : " .coverage.*"
@@ -154,10 +154,10 @@ jobs:
154154 python-version : ['3.7', '3.8', '3.9', '3.10']
155155
156156 steps :
157- - uses : actions/checkout@v2
157+ - uses : actions/checkout@v3
158158
159159 - name : Set up Python ${{ matrix.python-version }}
160- uses : actions/setup-python@v2
160+ uses : actions/setup-python@v4
161161 with :
162162 python-version : ${{ matrix.python-version }}
163163
@@ -167,7 +167,7 @@ jobs:
167167 echo "::set-output name=dir::$(pip cache dir)"
168168
169169 - name : Cache
170- uses : actions/cache@v2
170+ uses : actions/cache@v3
171171 with :
172172 path : ${{ steps.pip-cache.outputs.dir }}
173173 key :
@@ -187,7 +187,7 @@ jobs:
187187 DB_NAME : " :memory:"
188188
189189 - name : Upload coverage data
190- uses : actions/upload-artifact@v2
190+ uses : actions/upload-artifact@v3
191191 with :
192192 name : coverage-data
193193 path : " .coverage.*"
@@ -197,16 +197,16 @@ jobs:
197197 runs-on : " ubuntu-latest"
198198 needs : [sqlite, mysql, postgres]
199199 steps :
200- - uses : actions/checkout@v2
201- - uses : actions/setup-python@v2
200+ - uses : actions/checkout@v3
201+ - uses : actions/setup-python@v4
202202 with :
203203 # Use latest, so it understands all syntax.
204204 python-version : " 3.10"
205205
206206 - run : python -m pip install --upgrade coverage
207207
208208 - name : Download coverage data.
209- uses : actions/download-artifact@v2
209+ uses : actions/download-artifact@v3
210210 with :
211211 name : coverage-data
212212
@@ -217,7 +217,7 @@ jobs:
217217 python -m coverage report
218218
219219 - name : Upload HTML report if check failed.
220- uses : actions/upload-artifact@v2
220+ uses : actions/upload-artifact@v3
221221 with :
222222 name : html-report
223223 path : htmlcov
@@ -229,10 +229,10 @@ jobs:
229229 fail-fast : false
230230
231231 steps :
232- - uses : actions/checkout@v2
232+ - uses : actions/checkout@v3
233233
234234 - name : Set up Python ${{ matrix.python-version }}
235- uses : actions/setup-python@v2
235+ uses : actions/setup-python@v4
236236 with :
237237 python-version : 3.8
238238
@@ -242,7 +242,7 @@ jobs:
242242 echo "::set-output name=dir::$(pip cache dir)"
243243
244244 - name : Cache
245- uses : actions/cache@v2
245+ uses : actions/cache@v3
246246 with :
247247 path : ${{ steps.pip-cache.outputs.dir }}
248248 key :
0 commit comments