From 539a1a6c9956fdf896fb42769395c6be7eec241e Mon Sep 17 00:00:00 2001 From: Ryan J Field Date: Tue, 8 Oct 2024 08:40:13 +0100 Subject: [PATCH] Update Artifact version --- .github/workflows/test-build.yaml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test-build.yaml b/.github/workflows/test-build.yaml index 5ff699d0..19f14876 100644 --- a/.github/workflows/test-build.yaml +++ b/.github/workflows/test-build.yaml @@ -3,9 +3,6 @@ on: branches: - '*' workflow_dispatch: -# pull_request: -# branches: -# - master jobs: R-CMD-check: @@ -89,8 +86,10 @@ jobs: run: find check -name 'testthat.Rout*' -exec cat '{}' \; || true shell: bash - name: Upload check results - if: failure() - uses: actions/upload-artifact@main + if: ${{ failure() }} + uses: actions/upload-artifact@v4 with: name: ${{ runner.os }}-r${{ matrix.config.r }}-results path: check + overwrite: true + include-hidden-files: true