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 1111 runs-on : ubuntu-latest
1212 steps :
1313 # 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
1515 env :
1616 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 3030 - name : Build wheel
3131 run : python3 -m pip wheel --no-deps -w dist .
3232 - name : Upload wheel as artifact
33- uses : actions/upload-artifact@v3
33+ uses : actions/upload-artifact@v4
3434 with :
3535 name : cpp-linter_wheel
3636 path : ${{ github.workspace }}/dist/*.whl
5353 python-version : ${{ matrix.py }}
5454
5555 - name : download wheel artifact
56- uses : actions/download-artifact@v3
56+ uses : actions/download-artifact@v4
5757 with :
5858 name : cpp-linter_wheel
5959 path : dist
9797 run : coverage run -m pytest
9898
9999 - name : Upload coverage data
100- uses : actions/upload-artifact@v3
100+ uses : actions/upload-artifact@v4
101101 with :
102102 name : coverage-data-${{ runner.os }}-py${{ matrix.py }}-${{ matrix.version }}
103103 path : .coverage*
@@ -109,7 +109,7 @@ jobs:
109109 - uses : actions/checkout@v4
110110
111111 - name : Download all artifacts
112- uses : actions/download-artifact@v3
112+ uses : actions/download-artifact@v4
113113 with :
114114 path : ci-artifacts
115115
@@ -127,7 +127,7 @@ jobs:
127127 coverage html
128128
129129 - name : Upload comprehensive coverage HTML report
130- uses : actions/upload-artifact@v3
130+ uses : actions/upload-artifact@v4
131131 with :
132132 name : coverage-report
133133 path : htmlcov/
You can’t perform that action at this time.
0 commit comments