From a17810654aacc36a6ba9e205131676f5382bbca3 Mon Sep 17 00:00:00 2001 From: Michael Chirico Date: Tue, 24 Sep 2024 23:28:04 -0700 Subject: [PATCH] Try a pinned covr version --- .github/workflows/test-coverage.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-coverage.yaml b/.github/workflows/test-coverage.yaml index be299049e..3583a07fe 100644 --- a/.github/workflows/test-coverage.yaml +++ b/.github/workflows/test-coverage.yaml @@ -36,9 +36,9 @@ jobs: - name: Install dependencies run: | - install.packages(c("remotes")) + install.packages("remotes") remotes::install_deps(dependencies = TRUE) - remotes::install_cran("covr") + remotes::install_version("covr", "3.6.3") # TODO(r-lib/covr#567): Go back to just installing CRAN covr shell: Rscript {0} - name: Test coverage