@@ -67,15 +67,15 @@ jobs:
67
67
python -VV
68
68
python -m site
69
69
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
71
71
python -m pip install --upgrade coverage_pyver_pragma
72
72
73
73
- name : " Run Tests for Python ${{ matrix.config.python-version }}"
74
74
if : steps.setup-python.outcome == 'success'
75
75
run : python -m tox -e "${{ matrix.config.testenvs }}" -s false
76
76
77
77
- name : " Upload Coverage 🚀"
78
- uses : actions/upload-artifact@v2
78
+ uses : actions/upload-artifact@v3
79
79
if : ${{ always() && steps.setup-python.outcome == 'success' }}
80
80
with :
81
81
name : " coverage-${{ matrix.config.python-version }}"
@@ -100,7 +100,7 @@ jobs:
100
100
python -m pip install --upgrade "coveralls>=3.0.0" coverage_pyver_pragma
101
101
102
102
- name : " Download Coverage 🪂"
103
- uses : actions/download-artifact@v2
103
+ uses : actions/download-artifact@v3
104
104
with :
105
105
path : coverage
106
106
@@ -118,7 +118,7 @@ jobs:
118
118
119
119
- name : " Upload Combined Coverage Artefact 🚀"
120
120
if : ${{ steps.show.outcome != 'failure' }}
121
- uses : actions/upload-artifact@v2
121
+ uses : actions/upload-artifact@v3
122
122
with :
123
123
name : " combined-coverage"
124
124
path : .coverage
@@ -149,7 +149,7 @@ jobs:
149
149
if : startsWith(github.ref, 'refs/tags/')
150
150
run : |
151
151
python -m pip install --upgrade pip setuptools wheel
152
- python -m pip install --upgrade tox
152
+ python -m pip install --upgrade tox~=3.0
153
153
154
154
- name : Build distributions 📦
155
155
if : startsWith(github.ref, 'refs/tags/')
0 commit comments