From e209e82b7d2a68e287946923dfa96d2fbf9b8d1c Mon Sep 17 00:00:00 2001 From: Misty De Meo Date: Tue, 3 Sep 2024 20:52:19 -0300 Subject: [PATCH] chore(ci): update upload/download-artifact These have to be updated in lockstep; v3 and v4 artifacts are incompatible with each other. Closes #222. --- .github/workflows/test-pr.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-pr.yml b/.github/workflows/test-pr.yml index c996ee9..1c7d3b1 100644 --- a/.github/workflows/test-pr.yml +++ b/.github/workflows/test-pr.yml @@ -36,7 +36,7 @@ jobs: run: coverage xml -o cobertura.xml - name: Upload coverage report if: matrix.python-version == 3.10 - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: coverage-report path: cobertura.xml @@ -47,7 +47,7 @@ jobs: steps: - name: Download coverage report - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: coverage-report path: cobertura.xml