File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 11
11
runs-on : ubuntu-latest
12
12
steps :
13
13
# Draft your next Release notes as Pull Requests are merged into the default branch
14
- - uses : release-drafter/release-drafter@v5
14
+ - uses : release-drafter/release-drafter@v6
15
15
env :
16
16
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 30
30
- name : Build wheel
31
31
run : python3 -m pip wheel --no-deps -w dist .
32
32
- name : Upload wheel as artifact
33
- uses : actions/upload-artifact@v3
33
+ uses : actions/upload-artifact@v4
34
34
with :
35
35
name : cpp-linter_wheel
36
36
path : ${{ github.workspace }}/dist/*.whl
53
53
python-version : ${{ matrix.py }}
54
54
55
55
- name : download wheel artifact
56
- uses : actions/download-artifact@v3
56
+ uses : actions/download-artifact@v4
57
57
with :
58
58
name : cpp-linter_wheel
59
59
path : dist
97
97
run : coverage run -m pytest
98
98
99
99
- name : Upload coverage data
100
- uses : actions/upload-artifact@v3
100
+ uses : actions/upload-artifact@v4
101
101
with :
102
102
name : coverage-data-${{ runner.os }}-py${{ matrix.py }}-${{ matrix.version }}
103
103
path : .coverage*
@@ -109,7 +109,7 @@ jobs:
109
109
- uses : actions/checkout@v4
110
110
111
111
- name : Download all artifacts
112
- uses : actions/download-artifact@v3
112
+ uses : actions/download-artifact@v4
113
113
with :
114
114
path : ci-artifacts
115
115
@@ -127,7 +127,7 @@ jobs:
127
127
coverage html
128
128
129
129
- name : Upload comprehensive coverage HTML report
130
- uses : actions/upload-artifact@v3
130
+ uses : actions/upload-artifact@v4
131
131
with :
132
132
name : coverage-report
133
133
path : htmlcov/
You can’t perform that action at this time.
0 commit comments