From b5151a70efc7aac6f5774a1d614ac9a97039dcb2 Mon Sep 17 00:00:00 2001 From: Tylar Date: Wed, 5 Oct 2022 12:31:16 -0400 Subject: [PATCH] try update to latest dependency management action attempted fix for failing builds mentioned in #31 --- .github/workflows/run_tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/run_tests.yml b/.github/workflows/run_tests.yml index d5d03dc..ccda5bc 100644 --- a/.github/workflows/run_tests.yml +++ b/.github/workflows/run_tests.yml @@ -14,7 +14,7 @@ jobs: - uses: r-lib/actions/setup-r@v1 with: use-public-rspm: true - - uses: r-lib/actions/setup-r-dependencies@v1 # this tests installation + - uses: r-lib/actions/setup-r-dependencies@v2 # this tests installation - name: run tests # this runs unit tests run: Rscript -e 'testthat::test_local()' test_website_build: @@ -25,7 +25,7 @@ jobs: - uses: r-lib/actions/setup-r@v1 with: use-public-rspm: true - - uses: r-lib/actions/setup-r-dependencies@v1 + - uses: r-lib/actions/setup-r-dependencies@v2 with: extra-packages: pkgdown needs: website