From bd15ba76917f52aecb6ad170495bf26dfed2ca98 Mon Sep 17 00:00:00 2001 From: Richard Meitern Date: Fri, 25 Apr 2025 10:56:23 +0300 Subject: [PATCH] Update actions/upload-artifact to v4 to fix missing download info --- .github/workflows/test-coverage.yaml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test-coverage.yaml b/.github/workflows/test-coverage.yaml index 2c5bb502..4c1fa4fb 100644 --- a/.github/workflows/test-coverage.yaml +++ b/.github/workflows/test-coverage.yaml @@ -23,8 +23,7 @@ jobs: - uses: r-lib/actions/setup-r-dependencies@v2 with: - extra-packages: any::covr - needs: coverage + extra-packages: covr - name: Test coverage run: | @@ -38,13 +37,12 @@ jobs: - name: Show testthat output if: always() run: | - ## -------------------------------------------------------------------- find ${{ runner.temp }}/package -name 'testthat.Rout*' -exec cat '{}' \; || true shell: bash - name: Upload test results if: failure() - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: coverage-test-failures path: ${{ runner.temp }}/package