From 6a39e2a31d0473a3e5692ebd380b18e24512367d Mon Sep 17 00:00:00 2001 From: Kevin Burnett <18027+burnettk@users.noreply.github.com> Date: Fri, 2 Feb 2024 13:00:11 -0800 Subject: [PATCH] attempt to upgrade github actions and keep coverage working (#950) * attempt to upgrade github actions and keep coverage working * screw it, will attempt to only upload once, so just enforce it --------- Co-authored-by: burnettk --- .github/workflows/tests.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 2c2549e6d..31c4b6fec 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -30,7 +30,6 @@ jobs: os: "ubuntu-latest", session: "tests", database: "mysql", - upload_coverage: true, } - { python: "3.12", @@ -186,7 +185,7 @@ jobs: - name: Upload coverage data # pin to upload coverage from only one matrix entry, otherwise coverage gets confused later if: matrix.upload_coverage - uses: "actions/upload-artifact@v3" + uses: "actions/upload-artifact@v4.3.0" # this action doesn't seem to respect working-directory so include working-directory value in path with: name: coverage-data @@ -275,7 +274,7 @@ jobs: poetry --version - name: Download coverage data - uses: actions/download-artifact@v3.0.2 + uses: actions/download-artifact@v4.1.1 with: name: coverage-data # this action doesn't seem to respect working-directory so include working-directory value in path