From b19c6727ec5a567e3a56a8d81dcbbb00b2e333c0 Mon Sep 17 00:00:00 2001 From: Tom Most Date: Mon, 1 Jul 2024 19:19:46 -0700 Subject: [PATCH] Bump some more actions --- .github/workflows/tests.yaml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 3c9bd00..3a3020e 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -62,7 +62,7 @@ jobs: - name: Run job via tox run: | # GitHub Actions VM have 2 CPUs. - tox --parallel 2 + TOX_PARALLEL_NO_SPINNER=1 tox --parallel 2 - name: Prepare GitHub Pages if: contains(matrix['tox-env'], 'apidocs') @@ -90,9 +90,9 @@ jobs: - name: Store coverage file if: ${{ !cancelled() && !matrix.skip-coverage }} - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: - name: coverage + name: coverage-${{ matrix.python-version }}-${{ matrix.job-name }}" path: .coverage-job-* coverage-report: @@ -104,7 +104,7 @@ jobs: needs: - testing # Wait for test jobs. steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 @@ -114,9 +114,10 @@ jobs: python -m pip install --upgrade coverage[toml] diff_cover - name: Download coverage reports - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: - name: coverage + pattern: coverage-* + merge-multiple: true path: . - name: Prepare coverage