From 15ba1a3c9497cc2d5d5e006930f57e5cba3acdad Mon Sep 17 00:00:00 2001 From: Stefan Agner Date: Wed, 6 Aug 2025 15:49:42 +0200 Subject: [PATCH] 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. --- .github/workflows/ci.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 7d57d5e47..51bd5e015 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -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