File tree Expand file tree Collapse file tree 3 files changed +7
-6
lines changed Expand file tree Collapse file tree 3 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -15,15 +15,15 @@ runs:
15
15
# This method has the limitation of 1 coverage file per run, limiting some coverage between online/offline tests.
16
16
- run : |
17
17
COVERAGE_UUID=$(python3 -c "import uuid; print(uuid.uuid4())")
18
- echo "COVERAGE_UUID=${COVERAGE_UUID}" >> $GITHUB_OUTPUT
18
+ echo "COVERAGE_UUID=${COVERAGE_UUID}" >> " $GITHUB_OUTPUT"
19
19
if [ -f .coverage ]; then
20
20
mv .coverage .coverage.${COVERAGE_UUID}
21
21
fi
22
22
id: coverage-uuid
23
23
shell: bash
24
- - uses : actions/upload-artifact@v3.1.0
24
+ - uses : actions/upload-artifact@v4
25
25
with :
26
- name : coverage-data
26
+ name : coverage-data-${{ steps.coverage-uuid.outputs.COVERAGE_UUID }}
27
27
path : |
28
28
.coverage.*
29
29
*.lcov
Original file line number Diff line number Diff line change 38
38
- build-release
39
39
steps :
40
40
- name : fetch dists
41
- uses : actions/download-artifact@v3
41
+ uses : actions/download-artifact@v4
42
42
with :
43
43
name : slither-dists
44
44
path : dist/
Original file line number Diff line number Diff line change @@ -109,9 +109,10 @@ jobs:
109
109
- run : pip install coverage[toml]
110
110
111
111
- name : download coverage data
112
- uses : actions/download-artifact@v3.0.2
112
+ uses : actions/download-artifact@v4
113
113
with :
114
- name : coverage-data
114
+ pattern : coverage-data-*
115
+ merge-multiple : true
115
116
116
117
- name : combine coverage data
117
118
id : combinecoverage
You can’t perform that action at this time.
0 commit comments