From 0beec522041d086f4ed5e1eb0259b0e183ad7a73 Mon Sep 17 00:00:00 2001 From: David Linke Date: Tue, 19 Mar 2024 22:12:34 +0100 Subject: [PATCH] Make artifact names unique for v4 of action --- .github/workflows/ci.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b807bce..69872c6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -49,7 +49,7 @@ jobs: - name: Upload coverage data uses: actions/upload-artifact@v4 with: - name: coverage-data + name: coverage-data-${{ matrix.python-version }} path: .coverage.* coverage: @@ -67,9 +67,10 @@ jobs: run: python -m pip install --upgrade coverage[toml] - name: Download data - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: - name: coverage-data + pattern: coverage-data-* + merge-multiple: true - name: Combine coverage, create reports and fail if less than threshold. run: |