File tree 1 file changed +7
-6
lines changed
1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change 50
50
id : version
51
51
run : python ./tools/get-version.py >> $GITHUB_OUTPUT
52
52
- name : Upload artifacts
53
- uses : actions/upload-artifact@v3
53
+ uses : actions/upload-artifact@v4
54
54
with :
55
55
name : dist
56
56
path : dist
@@ -84,10 +84,10 @@ jobs:
84
84
run : python -m tox
85
85
86
86
- name : Store coverage data
87
- uses : actions/upload-artifact@v3
87
+ uses : actions/upload-artifact@v4
88
88
if : " !endsWith(matrix.os, 'windows')"
89
89
with :
90
- name : coverage-per-interpreter
90
+ name : coverage-python-${{ matrix.python-version }}
91
91
path : .coverage.*
92
92
93
93
check :
@@ -109,9 +109,10 @@ jobs:
109
109
set -xe
110
110
python -m pip install --upgrade coverage[toml]
111
111
- name : Download coverage data for all test runs
112
- uses : actions/download-artifact@v3
112
+ uses : actions/download-artifact@v4
113
113
with :
114
- name : coverage-per-interpreter
114
+ pattern : coverage-*
115
+ merge-multiple : true
115
116
- name : Combine coverage data and create report
116
117
run : |
117
118
coverage combine
@@ -136,7 +137,7 @@ jobs:
136
137
- name : Checkout
137
138
uses : actions/checkout@v4
138
139
- name : Download distributions
139
- uses : actions/download-artifact@v3
140
+ uses : actions/download-artifact@v4
140
141
with :
141
142
name : dist
142
143
path : dist
You can’t perform that action at this time.
0 commit comments