Use path for actions/download-artifact to fix coverage report (#6073)

Use name and path parameters to explicitly download the coverage report
artifact. This fixes a behavioral change introduced with v5.0.0
ofactions/download-artifact.
This commit is contained in:
Stefan Agner 2025-08-06 15:49:42 +02:00 committed by GitHub
parent 8e4a87c751
commit 15ba1a3c94
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -388,7 +388,7 @@ jobs:
- name: Upload coverage artifact
uses: actions/upload-artifact@v4.6.2
with:
name: coverage-${{ matrix.python-version }}
name: coverage
path: .coverage
include-hidden-files: true
@ -418,6 +418,9 @@ jobs:
exit 1
- name: Download all coverage artifacts
uses: actions/download-artifact@v5.0.0
with:
name: coverage
path: coverage/
- name: Combine coverage results
run: |
. venv/bin/activate