@@ -67,15 +67,15 @@ jobs:
6767 python -VV
6868 python -m site
6969 python -m pip install --upgrade pip setuptools wheel
70- python -m pip install --upgrade tox virtualenv!=20.16.0
70+ python -m pip install --upgrade tox~=3.0 virtualenv!=20.16.0
7171 python -m pip install --upgrade coverage_pyver_pragma
7272
7373 - name : " Run Tests for Python ${{ matrix.config.python-version }}"
7474 if : steps.setup-python.outcome == 'success'
7575 run : python -m tox -e "${{ matrix.config.testenvs }}" -s false
7676
7777 - name : " Upload Coverage 🚀"
78- uses : actions/upload-artifact@v2
78+ uses : actions/upload-artifact@v3
7979 if : ${{ always() && steps.setup-python.outcome == 'success' }}
8080 with :
8181 name : " coverage-${{ matrix.config.python-version }}"
@@ -100,7 +100,7 @@ jobs:
100100 python -m pip install --upgrade "coveralls>=3.0.0" coverage_pyver_pragma
101101
102102 - name : " Download Coverage 🪂"
103- uses : actions/download-artifact@v2
103+ uses : actions/download-artifact@v3
104104 with :
105105 path : coverage
106106
@@ -118,7 +118,7 @@ jobs:
118118
119119 - name : " Upload Combined Coverage Artefact 🚀"
120120 if : ${{ steps.show.outcome != 'failure' }}
121- uses : actions/upload-artifact@v2
121+ uses : actions/upload-artifact@v3
122122 with :
123123 name : " combined-coverage"
124124 path : .coverage
@@ -149,7 +149,7 @@ jobs:
149149 if : startsWith(github.ref, 'refs/tags/')
150150 run : |
151151 python -m pip install --upgrade pip setuptools wheel
152- python -m pip install --upgrade tox
152+ python -m pip install --upgrade tox~=3.0
153153
154154 - name : Build distributions 📦
155155 if : startsWith(github.ref, 'refs/tags/')
0 commit comments