From bd9848fc762a3cd4278d583cd3b38ef5a66f5cfc Mon Sep 17 00:00:00 2001 From: Hadley Wickham Date: Wed, 2 Mar 2022 17:17:38 -0600 Subject: [PATCH 1/8] use_tidy_description() --- DESCRIPTION | 50 ++++++++++++++++++++++++-------------------------- 1 file changed, 24 insertions(+), 26 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index 89af5c1bd2..f269456687 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,18 +1,14 @@ Package: ggplot2 -Version: 3.3.5.9000 Title: Create Elegant Data Visualisations Using the Grammar of Graphics -Description: A system for 'declaratively' creating graphics, - based on "The Grammar of Graphics". You provide the data, tell 'ggplot2' - how to map variables to aesthetics, what graphical primitives to use, - and it takes care of the details. +Version: 3.3.5.9000 Authors@R: c( - person("Hadley", "Wickham", , "hadley@rstudio.com", "aut", + person("Hadley", "Wickham", , "hadley@rstudio.com", role = "aut", comment = c(ORCID = "0000-0003-4757-117X")), - person("Winston", "Chang", , role = "aut", + person("Winston", "Chang", role = "aut", comment = c(ORCID = "0000-0002-1576-2126")), - person("Lionel", "Henry", , role = "aut"), - person("Thomas Lin", "Pedersen", , "thomas.pedersen@rstudio.com", - role = c("aut", "cre"), comment = c(ORCID = "0000-0002-5147-4711")), + person("Lionel", "Henry", role = "aut"), + person("Thomas Lin", "Pedersen", , "thomas.pedersen@rstudio.com", role = c("aut", "cre"), + comment = c(ORCID = "0000-0002-5147-4711")), person("Kohske", "Takahashi", role = "aut"), person("Claus", "Wilke", role = "aut", comment = c(ORCID = "0000-0002-7470-9261")), @@ -23,7 +19,14 @@ Authors@R: c( person("Dewey", "Dunnington", role = "aut", comment = c(ORCID = "0000-0002-9415-4582")), person("RStudio", role = c("cph", "fnd")) - ) + ) +Description: A system for 'declaratively' creating graphics, based on "The + Grammar of Graphics". You provide the data, tell 'ggplot2' how to map + variables to aesthetics, what graphical primitives to use, and it + takes care of the details. +License: MIT + file LICENSE +URL: https://ggplot2.tidyverse.org, https://github.com/tidyverse/ggplot2 +BugReports: https://github.com/tidyverse/ggplot2/issues Depends: R (>= 3.3) Imports: @@ -42,7 +45,6 @@ Imports: withr (>= 2.0.0) Suggests: covr, - ragg, dplyr, ggplot2movies, hexbin, @@ -58,6 +60,7 @@ Suggests: nlme, profvis, quantreg, + ragg, RColorBrewer, rgeos, rmarkdown, @@ -67,11 +70,16 @@ Suggests: testthat (>= 3.0.0), vdiffr (>= 1.0.0), xml2 -Enhances: sp -License: MIT + file LICENSE -URL: https://ggplot2.tidyverse.org, https://github.com/tidyverse/ggplot2 -BugReports: https://github.com/tidyverse/ggplot2/issues +Enhances: + sp +VignetteBuilder: + knitr +Config/Needs/website:ggtext, tidyr, forcats, tidyverse/tidytemplate +Config/testthat/edition: 3 +Encoding: UTF-8 LazyData: true +Roxygen: list(markdown = TRUE) +RoxygenNote: 7.1.1 Collate: 'ggproto.r' 'ggplot-global.R' @@ -265,13 +273,3 @@ Collate: 'utilities-tidy-eval.R' 'zxx.r' 'zzz.r' -VignetteBuilder: knitr -RoxygenNote: 7.1.1 -Roxygen: list(markdown = TRUE) -Encoding: UTF-8 -Config/Needs/website: - ggtext, - tidyr, - forcats, - tidyverse/tidytemplate -Config/testthat/edition: 3 From f154c5e89b37193fcac9505ce5396ed4f4eeb022 Mon Sep 17 00:00:00 2001 From: Hadley Wickham Date: Wed, 2 Mar 2022 17:22:44 -0600 Subject: [PATCH 2/8] use_tidy_github_actions() --- .github/workflows/R-CMD-check.yaml | 91 +++++++++------------------- .github/workflows/pkgdown.yaml | 36 +++++++---- .github/workflows/pr-commands.yaml | 32 +++++----- .github/workflows/test-coverage.yaml | 11 ++-- 4 files changed, 77 insertions(+), 93 deletions(-) diff --git a/.github/workflows/R-CMD-check.yaml b/.github/workflows/R-CMD-check.yaml index 0a9593bd02..5229892536 100644 --- a/.github/workflows/R-CMD-check.yaml +++ b/.github/workflows/R-CMD-check.yaml @@ -1,4 +1,4 @@ -# Workflow derived from https://github.com/r-lib/actions/tree/master/examples +# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples # Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help # # NOTE: This workflow is overkill for most R packages and @@ -12,10 +12,6 @@ on: name: R-CMD-check -# Increment this version when we want to clear cache -env: - cache-version: v6 - jobs: R-CMD-check: runs-on: ${{ matrix.config.os }} @@ -26,78 +22,49 @@ jobs: fail-fast: false matrix: config: - - {os: windows-latest, r: '4.1', vdiffr: true, xref: true} - - {os: macOS-latest, r: '4.1', vdiffr: true, xref: true} - - {os: ubuntu-18.04, r: 'devel', vdiffr: false, xref: true} - - {os: ubuntu-18.04, r: '4.1', vdiffr: true, xref: true, rspm: "https://packagemanager.rstudio.com/cran/__linux__/bionic/latest"} - - {os: ubuntu-18.04, r: '4.0', vdiffr: false, xref: true, rspm: "https://packagemanager.rstudio.com/cran/__linux__/bionic/latest"} - - {os: ubuntu-18.04, r: '3.6', vdiffr: false, xref: true, rspm: "https://packagemanager.rstudio.com/cran/__linux__/bionic/latest"} - - {os: ubuntu-18.04, r: '3.5', vdiffr: false, xref: true, rspm: "https://packagemanager.rstudio.com/cran/__linux__/bionic/latest"} - - {os: ubuntu-18.04, r: '3.4', vdiffr: false, xref: false, rspm: "https://packagemanager.rstudio.com/cran/__linux__/bionic/latest"} - - {os: ubuntu-18.04, r: '3.3', vdiffr: false, xref: false, rspm: "https://packagemanager.rstudio.com/cran/__linux__/bionic/latest"} + - {os: macOS-latest, r: 'release'} + + - {os: windows-latest, r: 'release'} + # Use 3.6 to trigger usage of RTools35 + - {os: windows-latest, r: '3.6'} + + # Use older ubuntu to maximise backward compatibility + - {os: ubuntu-18.04, r: 'devel', http-user-agent: 'release'} + - {os: ubuntu-18.04, r: 'release'} + - {os: ubuntu-18.04, r: 'oldrel-1'} + - {os: ubuntu-18.04, r: 'oldrel-2'} + - {os: ubuntu-18.04, r: 'oldrel-3'} + - {os: ubuntu-18.04, r: 'oldrel-4'} env: - R_REMOTES_NO_ERRORS_FROM_WARNINGS: true - RSPM: ${{ matrix.config.rspm }} - # don't treat missing suggested packages as error + GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} + R_KEEP_PKG_SOURCE: yes _R_CHECK_FORCE_SUGGESTS_: false # Some packages might unavailable on the older versions, so let's ignore xref warnings - _R_CHECK_RD_XREFS_: ${{ matrix.config.xref }} + _R_CHECK_RD_XREFS_: false # Runs vdiffr test only on the latest version of R - VDIFFR_RUN_TESTS: ${{ matrix.config.vdiffr }} + VDIFFR_RUN_TESTS: ${{ matrix.config.r == 'release' }} VDIFFR_LOG_PATH: "../vdiffr.Rout.fail" steps: - uses: actions/checkout@v2 - - uses: r-lib/actions/setup-r@master + - uses: r-lib/actions/setup-pandoc@v2 + + - uses: r-lib/actions/setup-r@v2 with: r-version: ${{ matrix.config.r }} http-user-agent: ${{ matrix.config.http-user-agent }} + use-public-rspm: true - - uses: r-lib/actions/setup-pandoc@master + - if: runner.os == 'macOS' + run: brew install --cask xquartz - - name: Query dependencies - run: | - install.packages('remotes') - saveRDS(remotes::dev_package_deps(dependencies = TRUE), "depends.Rds", version = 2) - shell: Rscript {0} - - - name: Cache R packages - if: runner.os != 'Windows' - uses: actions/cache@v1 + - uses: r-lib/actions/setup-r-dependencies@v2 with: - path: ${{ env.R_LIBS_USER }} - key: ${{ env.cache-version }}-${{ runner.os }}-r-${{ matrix.config.r }}-${{ hashFiles('depends.Rds') }} - restore-keys: ${{ env.cache-version }}-${{ runner.os }}-r-${{ matrix.config.r }}- - - - name: Install system dependencies on Linux - if: runner.os == 'Linux' - run: | - while read -r cmd - do - eval sudo $cmd - done < <(Rscript -e 'writeLines(remotes::system_requirements("ubuntu", "18.04"))') - - name: Install system dependencies on macOS - if: runner.os == 'macOS' - run: | - # XQuartz is needed by vdiffr - brew install xquartz - # Use only binary packages - echo 'options(pkgType = "binary")' >> ~/.Rprofile - - name: Install dependencies - run: | - remotes::install_deps(dependencies = TRUE) - remotes::install_cran("rcmdcheck") - shell: Rscript {0} - - - name: Check - run: rcmdcheck::rcmdcheck(args = "--no-manual", error_on = "warning", check_dir = "check") - shell: Rscript {0} + extra-packages: any::rcmdcheck + needs: check - - name: Upload check results - if: failure() - uses: actions/upload-artifact@master + - uses: r-lib/actions/check-r-package@v2 with: - name: ${{ runner.os }}-r${{ matrix.config.r }}-results - path: check + upload-snapshots: true diff --git a/.github/workflows/pkgdown.yaml b/.github/workflows/pkgdown.yaml index 6d10b7c806..0b2602168b 100644 --- a/.github/workflows/pkgdown.yaml +++ b/.github/workflows/pkgdown.yaml @@ -1,34 +1,46 @@ -# Workflow derived from https://github.com/r-lib/actions/tree/master/examples +# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples # Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help on: push: - types: [published] branches: [main, master] - tags: ['*'] + pull_request: + branches: [main, master] + release: + types: [published] + workflow_dispatch: name: pkgdown jobs: pkgdown: runs-on: ubuntu-latest + # Only restrict concurrency for non-PR jobs + concurrency: + group: pkgdown-${{ github.event_name != 'pull_request' || github.run_id }} env: GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} steps: - uses: actions/checkout@v2 - - uses: r-lib/actions/setup-pandoc@v1 + - uses: r-lib/actions/setup-pandoc@v2 - - uses: r-lib/actions/setup-r@v1 + - uses: r-lib/actions/setup-r@v2 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 + extra-packages: any::pkgdown, local::. needs: website - - name: Deploy package - run: | - git config --local user.name "$GITHUB_ACTOR" - git config --local user.email "$GITHUB_ACTOR@users.noreply.github.com" - Rscript -e 'pkgdown::deploy_to_branch(new_process = FALSE)' + - name: Build site + run: pkgdown::build_site_github_pages(new_process = FALSE, install = FALSE) + shell: Rscript {0} + + - name: Deploy to GitHub pages 🚀 + if: github.event_name != 'pull_request' + uses: JamesIves/github-pages-deploy-action@4.1.4 + with: + clean: false + branch: gh-pages + folder: docs diff --git a/.github/workflows/pr-commands.yaml b/.github/workflows/pr-commands.yaml index 1cdafbf7e4..97271eb29f 100644 --- a/.github/workflows/pr-commands.yaml +++ b/.github/workflows/pr-commands.yaml @@ -1,4 +1,4 @@ -# Workflow derived from https://github.com/r-lib/actions/tree/master/examples +# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples # Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help on: issue_comment: @@ -8,7 +8,7 @@ name: Commands jobs: document: - if: startsWith(github.event.comment.body, '/document') + if: ${{ github.event.issue.pull_request && (github.event.comment.author_association == 'MEMBER' || github.event.comment.author_association == 'OWNER') && startsWith(github.event.comment.body, '/document') }} name: document runs-on: ubuntu-latest env: @@ -16,20 +16,22 @@ jobs: steps: - uses: actions/checkout@v2 - - uses: r-lib/actions/pr-fetch@v1 + - uses: r-lib/actions/pr-fetch@v2 with: repo-token: ${{ secrets.GITHUB_TOKEN }} - - uses: r-lib/actions/setup-r@v1 + - uses: r-lib/actions/setup-r@v2 with: use-public-rspm: true - - uses: r-lib/actions/setup-r-dependencies@v1 + - uses: r-lib/actions/setup-r-dependencies@v2 with: - extra-packages: roxygen2 + extra-packages: any::roxygen2 + needs: pr-document - name: Document - run: Rscript -e 'roxygen2::roxygenise()' + run: roxygen2::roxygenise() + shell: Rscript {0} - name: commit run: | @@ -38,12 +40,12 @@ jobs: git add man/\* NAMESPACE git commit -m 'Document' - - uses: r-lib/actions/pr-push@v1 + - uses: r-lib/actions/pr-push@v2 with: repo-token: ${{ secrets.GITHUB_TOKEN }} style: - if: startsWith(github.event.comment.body, '/style') + if: ${{ github.event.issue.pull_request && (github.event.comment.author_association == 'MEMBER' || github.event.comment.author_association == 'OWNER') && startsWith(github.event.comment.body, '/style') }} name: style runs-on: ubuntu-latest env: @@ -51,17 +53,19 @@ jobs: steps: - uses: actions/checkout@v2 - - uses: r-lib/actions/pr-fetch@v1 + - uses: r-lib/actions/pr-fetch@v2 with: repo-token: ${{ secrets.GITHUB_TOKEN }} - - uses: r-lib/actions/setup-r@v1 + - uses: r-lib/actions/setup-r@v2 - name: Install dependencies - run: Rscript -e 'install.packages("styler")' + run: install.packages("styler") + shell: Rscript {0} - name: Style - run: Rscript -e 'styler::style_pkg()' + run: styler::style_pkg() + shell: Rscript {0} - name: commit run: | @@ -70,6 +74,6 @@ jobs: git add \*.R git commit -m 'Style' - - uses: r-lib/actions/pr-push@v1 + - uses: r-lib/actions/pr-push@v2 with: repo-token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/test-coverage.yaml b/.github/workflows/test-coverage.yaml index 3c0da1c97c..4b65418291 100644 --- a/.github/workflows/test-coverage.yaml +++ b/.github/workflows/test-coverage.yaml @@ -1,4 +1,4 @@ -# Workflow derived from https://github.com/r-lib/actions/tree/master/examples +# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples # Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help on: push: @@ -17,14 +17,15 @@ jobs: steps: - uses: actions/checkout@v2 - - uses: r-lib/actions/setup-r@v1 + - uses: r-lib/actions/setup-r@v2 with: use-public-rspm: true - - uses: r-lib/actions/setup-r-dependencies@v1 + - uses: r-lib/actions/setup-r-dependencies@v2 with: - extra-packages: covr + extra-packages: any::covr + needs: coverage - name: Test coverage - run: covr::codecov() + run: covr::codecov(quiet = FALSE) shell: Rscript {0} From 64cd1f3c79c9650a823d763169b589168a095f65 Mon Sep 17 00:00:00 2001 From: Hadley Wickham Date: Wed, 2 Mar 2022 17:25:42 -0600 Subject: [PATCH 3/8] Update website --- _pkgdown.yml | 21 ++++++--------------- 1 file changed, 6 insertions(+), 15 deletions(-) diff --git a/_pkgdown.yml b/_pkgdown.yml index 7290c01f6f..868360f66d 100644 --- a/_pkgdown.yml +++ b/_pkgdown.yml @@ -2,21 +2,16 @@ url: https://ggplot2.tidyverse.org template: package: tidytemplate - params: - docsearch: - api_key: e1261f3df95d2d4704c626ff11a4b536 - index_name: tidyverse_ggplot2 + bootstrap: 5 + + includes: + in_header: | + development: mode: auto authors: - Winston Chang: - href: https://github.com/wch - Lionel Henry: - href: https://github.com/lionel- - Thomas Lin Pedersen: - href: https://data-imaginist.com Claus Wilke: href: https://clauswilke.com Kara Woo: @@ -27,7 +22,6 @@ authors: href: https://fishandwhistle.net home: - strip_header: true links: - text: Learn more href: https://r4ds.had.co.nz/data-visualisation.html @@ -268,7 +262,6 @@ articles: - articles/faq-reordering - articles/faq-bars - news: releases: - text: "Version 3.3.0" @@ -290,10 +283,8 @@ news: navbar: structure: - right: [reference, news, articles, extensions, github] - left: [] + left: [reference, news, articles, extensions] components: - home: ~ extensions: text: Extensions href: https://exts.ggplot2.tidyverse.org/gallery/ From befa04a85516427a8b015cf6424f530e1ef63add Mon Sep 17 00:00:00 2001 From: Hadley Wickham Date: Thu, 3 Mar 2022 08:17:09 -0600 Subject: [PATCH 4/8] Do we need xquartz? --- .github/workflows/R-CMD-check.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/R-CMD-check.yaml b/.github/workflows/R-CMD-check.yaml index 5229892536..b504aa5691 100644 --- a/.github/workflows/R-CMD-check.yaml +++ b/.github/workflows/R-CMD-check.yaml @@ -57,9 +57,6 @@ jobs: http-user-agent: ${{ matrix.config.http-user-agent }} use-public-rspm: true - - if: runner.os == 'macOS' - run: brew install --cask xquartz - - uses: r-lib/actions/setup-r-dependencies@v2 with: extra-packages: any::rcmdcheck From b995b1fb1aa9249f46b5e1a052a21b616cefb9bd Mon Sep 17 00:00:00 2001 From: Hadley Wickham Date: Thu, 3 Mar 2022 08:18:47 -0600 Subject: [PATCH 5/8] Ignore packages on old R versions --- DESCRIPTION | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/DESCRIPTION b/DESCRIPTION index f269456687..e6c5101186 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -74,7 +74,11 @@ Enhances: sp VignetteBuilder: knitr -Config/Needs/website:ggtext, tidyr, forcats, tidyverse/tidytemplate +Config/Needs/check: maps=?ignore-before-r=3.5.0, + Hmisc=?ignore-before-r=3.6.0, mapproj=?ignore-before-r=3.5.0, + multcomp=?ignore-before-r=3.5.0, quantreg=?ignore-before-r=3.5.0, + interp=?ignore-before-r=3.5 +Config/Needs/website: ggtext, tidyr, forcats, tidyverse/tidytemplate Config/testthat/edition: 3 Encoding: UTF-8 LazyData: true From ea4349d854ba2894c14bc7264135f706ae3dd41c Mon Sep 17 00:00:00 2001 From: Hadley Wickham Date: Thu, 3 Mar 2022 09:27:09 -0600 Subject: [PATCH 6/8] Add missing trailing .0 --- DESCRIPTION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DESCRIPTION b/DESCRIPTION index e6c5101186..60ee25f93d 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -77,7 +77,7 @@ VignetteBuilder: Config/Needs/check: maps=?ignore-before-r=3.5.0, Hmisc=?ignore-before-r=3.6.0, mapproj=?ignore-before-r=3.5.0, multcomp=?ignore-before-r=3.5.0, quantreg=?ignore-before-r=3.5.0, - interp=?ignore-before-r=3.5 + interp=?ignore-before-r=3.5.0 Config/Needs/website: ggtext, tidyr, forcats, tidyverse/tidytemplate Config/testthat/edition: 3 Encoding: UTF-8 From 378698f7c405e4783b5d7a51a167d44c1d17e702 Mon Sep 17 00:00:00 2001 From: Hadley Wickham Date: Thu, 3 Mar 2022 09:29:58 -0600 Subject: [PATCH 7/8] Try in extra-packages --- .github/workflows/R-CMD-check.yaml | 9 ++++++++- DESCRIPTION | 4 ---- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/.github/workflows/R-CMD-check.yaml b/.github/workflows/R-CMD-check.yaml index b504aa5691..e09ace585c 100644 --- a/.github/workflows/R-CMD-check.yaml +++ b/.github/workflows/R-CMD-check.yaml @@ -59,7 +59,14 @@ jobs: - uses: r-lib/actions/setup-r-dependencies@v2 with: - extra-packages: any::rcmdcheck + extra-packages: > + any::rcmdcheck, + maps=?ignore-before-r=3.5.0, + Hmisc=?ignore-before-r=3.6.0, + mapproj=?ignore-before-r=3.5.0, + multcomp=?ignore-before-r=3.5.0, + quantreg=?ignore-before-r=3.5.0, + interp=?ignore-before-r=3.5.0 needs: check - uses: r-lib/actions/check-r-package@v2 diff --git a/DESCRIPTION b/DESCRIPTION index 60ee25f93d..4488507841 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -74,10 +74,6 @@ Enhances: sp VignetteBuilder: knitr -Config/Needs/check: maps=?ignore-before-r=3.5.0, - Hmisc=?ignore-before-r=3.6.0, mapproj=?ignore-before-r=3.5.0, - multcomp=?ignore-before-r=3.5.0, quantreg=?ignore-before-r=3.5.0, - interp=?ignore-before-r=3.5.0 Config/Needs/website: ggtext, tidyr, forcats, tidyverse/tidytemplate Config/testthat/edition: 3 Encoding: UTF-8 From cc5097a256b4aec49a5972e6fbccb132b26a8524 Mon Sep 17 00:00:00 2001 From: Hadley Wickham Date: Thu, 3 Mar 2022 09:53:49 -0600 Subject: [PATCH 8/8] Try using ubuntu-latest --- .github/workflows/R-CMD-check.yaml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/R-CMD-check.yaml b/.github/workflows/R-CMD-check.yaml index e09ace585c..9c9d6d6c86 100644 --- a/.github/workflows/R-CMD-check.yaml +++ b/.github/workflows/R-CMD-check.yaml @@ -28,13 +28,13 @@ jobs: # Use 3.6 to trigger usage of RTools35 - {os: windows-latest, r: '3.6'} - # Use older ubuntu to maximise backward compatibility - - {os: ubuntu-18.04, r: 'devel', http-user-agent: 'release'} - - {os: ubuntu-18.04, r: 'release'} - - {os: ubuntu-18.04, r: 'oldrel-1'} - - {os: ubuntu-18.04, r: 'oldrel-2'} - - {os: ubuntu-18.04, r: 'oldrel-3'} - - {os: ubuntu-18.04, r: 'oldrel-4'} + # Use latest ubuntu to make it easier to install sf dependencies + - {os: ubuntu-latest, r: 'devel', http-user-agent: 'release'} + - {os: ubuntu-latest, r: 'release'} + - {os: ubuntu-latest, r: 'oldrel-1'} + - {os: ubuntu-latest, r: 'oldrel-2'} + - {os: ubuntu-latest, r: 'oldrel-3'} + - {os: ubuntu-latest, r: 'oldrel-4'} env: GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}