@@ -63,15 +63,15 @@ jobs:
6363 python -VV
6464 python -m site
6565 python -m pip install --upgrade pip setuptools wheel
66- python -m pip install --upgrade tox virtualenv!=20.16.0
66+ python -m pip install --upgrade tox~=3.0 virtualenv!=20.16.0
6767 python -m pip install --upgrade coverage_pyver_pragma
6868
6969 - name : " Run Tests for Python ${{ matrix.config.python-version }}"
7070 if : steps.setup-python.outcome == 'success'
7171 run : python -m tox -e "${{ matrix.config.testenvs }}" -s false
7272
7373 - name : " Upload Coverage 🚀"
74- uses : actions/upload-artifact@v2
74+ uses : actions/upload-artifact@v3
7575 if : ${{ always() && steps.setup-python.outcome == 'success' }}
7676 with :
7777 name : " coverage-${{ matrix.config.python-version }}"
9696 python -m pip install --upgrade "coveralls>=3.0.0" coverage_pyver_pragma
9797
9898 - name : " Download Coverage 🪂"
99- uses : actions/download-artifact@v2
99+ uses : actions/download-artifact@v3
100100 with :
101101 path : coverage
102102
@@ -114,7 +114,7 @@ jobs:
114114
115115 - name : " Upload Combined Coverage Artefact 🚀"
116116 if : ${{ steps.show.outcome != 'failure' }}
117- uses : actions/upload-artifact@v2
117+ uses : actions/upload-artifact@v3
118118 with :
119119 name : " combined-coverage"
120120 path : .coverage
@@ -145,7 +145,7 @@ jobs:
145145 if : startsWith(github.ref, 'refs/tags/')
146146 run : |
147147 python -m pip install --upgrade pip setuptools wheel
148- python -m pip install --upgrade tox
148+ python -m pip install --upgrade tox~=3.0
149149
150150 - name : Build distributions 📦
151151 if : startsWith(github.ref, 'refs/tags/')
0 commit comments