File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change 49
49
DB_PASSWORD : hunter2
50
50
51
51
steps :
52
- - uses : actions/checkout@v2
52
+ - uses : actions/checkout@v3
53
53
54
- - uses : actions/setup-python@v2
54
+ - uses : actions/setup-python@v3
55
55
with :
56
56
python-version : ${{ matrix.python-version }}
57
57
cache : pip
71
71
run : tox --py current
72
72
73
73
- name : Upload coverage data
74
- uses : actions/upload-artifact@v2
74
+ uses : actions/upload-artifact@v3
75
75
with :
76
76
name : coverage-data
77
77
path : ' .coverage.*'
@@ -81,17 +81,17 @@ jobs:
81
81
runs-on : ubuntu-20.04
82
82
needs : tests
83
83
steps :
84
- - uses : actions/checkout@v2
84
+ - uses : actions/checkout@v3
85
85
86
- - uses : actions/setup-python@v2
86
+ - uses : actions/setup-python@v3
87
87
with :
88
88
python-version : ' 3.10'
89
89
90
90
- name : Install dependencies
91
91
run : python -m pip install --upgrade coverage[toml]
92
92
93
93
- name : Download data
94
- uses : actions/download-artifact@v2
94
+ uses : actions/download-artifact@v3
95
95
with :
96
96
name : coverage-data
97
97
@@ -103,7 +103,7 @@ jobs:
103
103
104
104
- name : Upload HTML report
105
105
if : ${{ failure() }}
106
- uses : actions/upload-artifact@v2
106
+ uses : actions/upload-artifact@v3
107
107
with :
108
108
name : html-report
109
109
path : htmlcov
You can’t perform that action at this time.
0 commit comments