From 6b15c84398d425fd66e032e5e543f0be7be43034 Mon Sep 17 00:00:00 2001 From: Daniel Herszenhut Date: Thu, 19 Oct 2023 16:39:53 -0300 Subject: [PATCH] using ubuntu 20.04 on pkgdown and coverage actions --- .github/workflows/pkgdown.yaml | 8 ++++---- .github/workflows/test-coverage.yaml | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/pkgdown.yaml b/.github/workflows/pkgdown.yaml index 38f2550..f8b77c8 100644 --- a/.github/workflows/pkgdown.yaml +++ b/.github/workflows/pkgdown.yaml @@ -9,9 +9,9 @@ name: pkgdown jobs: pkgdown: - runs-on: ubuntu-18.04 + runs-on: ubuntu-20.04 env: - RSPM: https://packagemanager.rstudio.com/cran/__linux__/bionic/latest + RSPM: https://packagemanager.rstudio.com/cran/__linux__/focal/latest GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} steps: @@ -34,8 +34,8 @@ jobs: path: | ${{ env.R_LIBS_USER }}/* !${{ env.R_LIBS_USER }}/pak - key: ubuntu-18.04-${{ steps.install-r.outputs.installed-r-version }}-1-${{ hashFiles('.github/r-depends.rds') }} - restore-keys: ubuntu-18.04-${{ steps.install-r.outputs.installed-r-version }}-1- + key: ubuntu-20.04-${{ steps.install-r.outputs.installed-r-version }}-1-${{ hashFiles('.github/r-depends.rds') }} + restore-keys: ubuntu-20.04-${{ steps.install-r.outputs.installed-r-version }}-1- - name: Install system dependencies (Linux) if: runner.os == 'Linux' diff --git a/.github/workflows/test-coverage.yaml b/.github/workflows/test-coverage.yaml index 183c60b..5db57dd 100644 --- a/.github/workflows/test-coverage.yaml +++ b/.github/workflows/test-coverage.yaml @@ -10,9 +10,9 @@ name: test-coverage jobs: test-coverage: - runs-on: ubuntu-18.04 + runs-on: ubuntu-20.04 env: - RSPM: https://packagemanager.rstudio.com/cran/__linux__/bionic/latest + RSPM: https://packagemanager.rstudio.com/cran/__linux__/focal/latest GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} steps: @@ -33,8 +33,8 @@ jobs: path: | ${{ env.R_LIBS_USER }}/* !${{ env.R_LIBS_USER }}/pak - key: ubuntu-18.04-${{ steps.install-r.outputs.installed-r-version }}-1-${{ hashFiles('.github/r-depends.rds') }} - restore-keys: ubuntu-18.04-${{ steps.install-r.outputs.installed-r-version }}-1- + key: ubuntu-20.04-${{ steps.install-r.outputs.installed-r-version }}-1-${{ hashFiles('.github/r-depends.rds') }} + restore-keys: ubuntu-20.04-${{ steps.install-r.outputs.installed-r-version }}-1- - name: Install system dependencies (Linux) if: runner.os == 'Linux'