@@ -44,14 +44,14 @@ jobs:
4444 python -m pip install --upgrade pip
4545 pip install . -r pipelines/requirements/ci.txt
4646
47- - uses : actions/cache@v3
47+ - uses : actions/cache@v4
4848 with :
4949 path : ~/.cache/pip
5050 key : ${{ runner.os }}-pip-${{ hashFiles('pipelines/requirements/*.txt') }}
5151 restore-keys : |
5252 ${{ runner.os }}-pip-
5353
54- - uses : actions/cache@v3
54+ - uses : actions/cache@v4
5555 with :
5656 path : .mypy_cache
5757 key : ${{ runner.os }}-mypy
7676 TARGET_PYTHON : ${{ matrix.python-version }}
7777
7878 - name : Upload coverage
79- uses : actions/upload-artifact@v3
79+ uses : actions/upload-artifact@v4
8080 with :
8181 name : coverage-data
8282 path : " .cache/.coverage.*"
@@ -102,7 +102,7 @@ jobs:
102102 python -m pip install --upgrade pip
103103 pip install . -r pipelines/requirements/ci.txt
104104
105- - uses : actions/cache@v3
105+ - uses : actions/cache@v4
106106 with :
107107 path : ~/.cache/pip
108108 key : ${{ runner.os }}-pip-${{ hashFiles('pipelines/requirements/*.txt') }}
@@ -137,7 +137,7 @@ jobs:
137137 python -m pip install --upgrade pip
138138 pip install -U . -r pipelines/requirements/ci.txt
139139
140- - uses : actions/cache@v3
140+ - uses : actions/cache@v4
141141 with :
142142 path : ~/.cache/pip
143143 key : ${{ runner.os }}-pip-${{ hashFiles('pipelines/requirements/*.txt') }}
@@ -175,14 +175,14 @@ jobs:
175175 python -m pip install --upgrade pip
176176 pip install -U . -r pipelines/requirements/ci.txt
177177
178- - uses : actions/cache@v3
178+ - uses : actions/cache@v4
179179 with :
180180 path : ~/.cache/pip
181181 key : ${{ runner.os }}-pip-${{ hashFiles('pipelines/requirements/*.txt') }}
182182 restore-keys : |
183183 ${{ runner.os }}-pip-
184184
185- - uses : actions/cache@v3
185+ - uses : actions/cache@v4
186186 with :
187187 path : .mypy_cache
188188 key : ${{ runner.os }}-mypy
@@ -262,7 +262,7 @@ jobs:
262262 python -m pip install --upgrade pip
263263 pip install -U . -r pipelines/requirements/ci.txt
264264
265- - uses : actions/cache@v3
265+ - uses : actions/cache@v4
266266 with :
267267 path : ~/.cache/pip
268268 key : ${{ runner.os }}-pip-${{ hashFiles('pipelines/requirements/*.txt') }}
@@ -311,7 +311,7 @@ jobs:
311311 COVERAGE_FILE : .cache/.coverage.databases
312312
313313 - name : Upload coverage
314- uses : actions/upload-artifact@v3
314+ uses : actions/upload-artifact@v4
315315 with :
316316 name : coverage-data
317317 path : " .cache/.coverage*"
@@ -334,7 +334,7 @@ jobs:
334334 pip install -U . -r pipelines/requirements/ci.txt
335335
336336 - name : Download coverage data.
337- uses : actions/download-artifact@v3
337+ uses : actions/download-artifact@v4
338338 with :
339339 name : coverage-data
340340 path : .cache/
@@ -345,7 +345,7 @@ jobs:
345345
346346 - name : Upload coverage report
347347 if : always()
348- uses : actions/upload-artifact@v3
348+ uses : actions/upload-artifact@v4
349349 with :
350350 name : htmlcov
351351 path : htmlcov
@@ -356,7 +356,7 @@ jobs:
356356 nox -s push-coverage
357357
358358 # delete the temporary coverage artifacts to save on unnecessary cloud storage usage
359- - uses : geekyeggo/delete-artifact@v2
359+ - uses : geekyeggo/delete-artifact@v4
360360 with :
361361 name : coverage-data
362362
0 commit comments