From 6519a0ee3e4db4f8a5116bd515e9a414cf1f8808 Mon Sep 17 00:00:00 2001 From: Jacob Walls Date: Mon, 19 Feb 2024 11:51:19 -0500 Subject: [PATCH] Fix coverage artifact combination step (#2388) --- .github/workflows/ci.yaml | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index cc6ac438bb..81617987c8 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -125,7 +125,7 @@ jobs: . venv/bin/activate pytest --cov - name: Upload coverage artifact - uses: actions/upload-artifact@v4.0.0 + uses: actions/upload-artifact@v4.3.1 with: name: coverage-linux-${{ matrix.python-version }} path: .coverage @@ -179,7 +179,7 @@ jobs: . venv\\Scripts\\activate pytest --cov - name: Upload coverage artifact - uses: actions/upload-artifact@v4.0.0 + uses: actions/upload-artifact@v4.3.1 with: name: coverage-windows-${{ matrix.python-version }} path: .coverage @@ -229,7 +229,7 @@ jobs: . venv/bin/activate pytest --cov - name: Upload coverage artifact - uses: actions/upload-artifact@v4.0.0 + uses: actions/upload-artifact@v4.3.1 with: name: coverage-pypy-${{ matrix.python-version }} path: .coverage @@ -251,10 +251,7 @@ jobs: - name: Install dependencies run: pip install -U -r requirements_minimal.txt - name: Download all coverage artifacts - uses: actions/download-artifact@v4.1.0 - with: - pattern: coverage-* - merge-multiple: true + uses: actions/download-artifact@v4.1.2 - name: Combine Linux coverage results run: | coverage combine coverage-linux*/.coverage