Releases: r-lib/actions
v2
Note that v2
is a sliding tag, and we introduce non-breaking changes to it.
v2.11.0
(2024-11-09)
-
[setup-r-dependencies]
parameterpak-version
can now berepo
or
none
as well.repo
means that the action will install pak from
the configured repositories, usinginstall.packages()
.repo
is
appropriate on systems that do not have access to our pak reporitory
on GitHUb.none
means that the action does not install pak at all.
Use this if you want to install pak yourself manually. Set the
R_LIB_FOR_PAK
environment variable to point to the library where pak
is installed. -
[setup-r]
now has aworking-directory
parameter, to be able to
specify the location of therenv.lock
file (#922, @calderonsamuel). -
Example check-like workflows now run on all pull requests, not only
on pull requests against themain
branch. -
[setup-r-dependencies]
and[setup-renv]
now do not use the
deprecatedsave-always
parameter ofactions/cache
. -
[setup-renv]
now correctly acceptsbypass-cache: never
, as stated
in the documentation. -
[setup-r-dependencies]
now saves the package cache correctly on
Windows with older R (#940).
v2.10.1
(2024-08-08)
-
[setup-r-dependencies]
now pinsquarto-dev/quarto-actions/setup
version to a constant sha, to be compatible with organizations where
this is a requirement (#901). -
[setup-renv]
now also caches R packages inrenv/library
, used when
RENV_CONFIG_PAK_ENABLED: true
(#900). -
[setup-manifest]
: new action to set up an R project with a Posit
Connectmanifest.json
file (#880).
v2.10.0
(2024-08-02)
-
[setup-r]
: on R 3.6.x we now use the P3M snapshot from 2024-06-01 by
default. This is because many newer CRAN packages do not work on R 3.6.x
any more. The default CRAN mirror is still added, so newer packages may
be used if they are required, butsetup-r-dependencies@v2
will prefer
the binary packages from P3M.Note that this only happens if you opt in to use P3M with the
use-public-rspm: true
input parameter. This is the default in all
example workflows.If the
RSPM
environment variable is already set, then it is used
unchanged, on all R versions. To avoid using a P3M snapshot on R 3.6.x,
set theRSPM_PIN_3_6
environment variable tofalse
. -
[setup-r]
now installs the x86_64 build of R on arm64 macOS, if there
is no arm64 build available for this R version (#883). -
Example blogdown, bookdown, document, pr-commands and render-markdown
workflows now correctly have write permission to repository contents
(#874, @remlapmot). -
[check-r-package]
: you can now setupload-snapshots
toalways
, to
upload snapshots even after failures (#871). -
[setup-r-dependencies]
now always sets theR_LIBS_USER
GitHub
environment variable, so it can be used without[setup-r]
or without
setting it manually (#881). -
The example workflows now use their file names as workflow names.
This is to make it easier to match worflow runs to workflow files.
Most of the thecheck-*
workflows useR-CMD-check.yaml
, however,
to anticipate the usethis package renaming them by default (#888). -
[setup-renv]
: you can now setbypass-cache
tonever
, to save the
cache even if the workflow fails (#873, @jaradkohl-mfj). -
[setup-pandoc]
: installing nightly Pandoc works again now (#889). -
[setup-r-dependencies]
now automatically installs Quarto if the repo
has a qmd file, and it isn't installed. See theinstall-quarto
and
quarto-version
input parameters (#866). -
[setup-r]
now avoids spurious warnings from Homebrew (#864). -
[setup-r-dependencies]
now acceptspak-version: none
to skip pak
installation. pak should be already installed on the system in this
case, otherwise the dependencies resolution and installation will fail.
You probably also need to set theR_LIB_FOR_PAK
env var to the library
where it is installed.
v2.9.0
(2024-05-09)
-
The
test-coverage.yaml
example workflow now handles global Codecov
tokens for test coverage uploads to codecov.io
(@ALanguillaume, @gaborcsardi, #823). -
The
check-full.yaml
example does not test on R 3.6.x any more. -
All example workflows set the default permissions now to read-only.
-
We deleted the (long broken)
run-rchk
action.
R-hub will have anrchk
container and builder soon: r-hub/containers#29. -
[setup-r-dependencies]: new option to save the R package cache for
unsuccessful workflow runs as well (@schloerke, #695). -
New example workflows
bookdown-gh-pages
andblogdown-gh-pages
to
deploy bookdown books and blogdown sites to GH Pages without commiting
them into the repository (#856).
v2.8.7
(2024-04-05)
[setup-r-dependencies]
now has alockfile-create-lib
input parameter, that is
passed topak::lockfile_create(lib = ...)
(#814).
v2.8.6
(2024-03-30)
[setup-r]
now does not install qpdf on Windows, because it is part of all Rtools
versions that we use. Also, it installs Ghostscript from a.zip
file instead of a
choco
package, becausechoco install
can sometimes freeze (#812).
v2.8.5
(2024-03-26)
[setup-r]
uses a different tag name to download system packages from on
Windows. This is to fix r-lib/usethis#1967.
v2.8.4
(2024-03-25)
[setup-r]
: Ghostscript and QPDF installation is now more robust on Windows.
We download and install manually, instead of installing from the Chocolatey
repository (#812).
v2.8.3
(2024-03-20)
[setup-r]
now sets theHOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK=true
environment variable when installation associated tools on macOS. Without thisbrew
often fails on outdated Homebrew installations (#810).[setup-r-dependencies]
now works on aarch64 Linux.
v2.8.2
(2024-03-18)
[setup-r]
now supports Rtools44, and installs Rtools44 for R 4.4.x (currently R-devel).[check-r-package]
now supportsupload-results: never
to never upload
check results as artifacts. This is useful if you want to handle artifact uploads
yourself.
v2.8.1
(2024-02-29)
[setup-r-dependencies]
: fix Pandoc auto-installation (#808).
v2.8.0
(2024-02-27)
[setup-r]
now allowsrtools-version: none
to skip installing Rtools (#767).[setup-pandoc]
: The default version is 3.1.11 now.[setup-pandoc]
can now install the latest pandoc version, or the pandoc nightly build.[setup-pandoc]
now supports arm64 macOS and any amd64 or arm64 Linux distribution.[setup-r-dependencies]
now installs pandoc if the R package depends on the rmarkdown package.[check-r-package]
now has inputsartifact-name
andsnapshot-artifact-name
to specify artifact names explicitly (#800).- The styler example now sets permissions correctly (#775, @thisisnic).
- The test coverage example now handles paths with spaces or special characters (#782, @Felixmil).
- The check example workflows now use a better
build_args
parameter (#787).
v2.7.2
(2024-02-01)
[check-r-package]
now uses better artifact names. It includesmatrix.config.id
from the job matrix in the artifact name. If that's not defined then the zero-based job index in the matrix is used. For non-matrix jobs, this is0
.
v2.7.1
(2024-01-31)
[check-r-package]
now includes the runner architecture in the name of the test output artifact, to avoid a name clash betweenmacos-14
and other macOS runners.
v2.7.0
(2024-01-31)
[setup-r]
now removes Homebrew R from the PATH on macOS. With thissetup-r
works on the new arm64macos-14
platform.- All actions and examples now use Node 20 actions.
v2.6.5
(2023-10-27)
[setup-r]
now tries to avoid*.r-project.org
URLs, to work around a DNS issue.[check-r-package]
now only sets_R_CHECK_CRAN_INCOMING_=false
if it is not set already (@krlmlr, #764).[setup-renv]
now has aworking-directory
parameter (@milanmlft, #770).- The example
test-coverage.yaml
workflow now works on Windows.
v2.6.4
(2023-07-14)
[setup-r-dependencies]
now works withoutsudo
on Linux.[setup-renv]
now only installs renv if not installed already, e.g. the installation of the correct renv version
is typically triggered from the.Rprofile
(#747).
v2.6.3
(2023-04-26)
[setup-r]
now installs gfortran 12.2 only for R 4.3.0 and newer, as it is not compatible with the
R 4.1.x (and possibly other) R builds (#722).
v2.6.2
(2023-04-24)
[setup-r]
sets itsinstalled-r-version
output correctly again, to the actual R version number.[setup-r]
now installs gfortran 12.2 for R 4.0.0 and newer. This fixes fortran compilation for
R 4.3.0 and newer.
v2.6.1
(2023-04-21)
[setup-r]
observes thertools-version
input parameter again (#720).- The pkgdown example now sets the permissions of the automatic
GITHUB_TOKEN
to allow deployment (#719, @jennybc).
v2.6.0
(2023-04-21)
[setup-r]
now does a better job resolving R version specifications.- The example workflow for styler now commits all styled files (#693, @dpprdan).
v2.5.0
(2023-04-01)
[setup-r]
: better cache key for R-devel: now the graphics engine API id and t he internal R id are also included
in the cache key (#699, @schloerke).[setup-r]
: ther-version
parameter can now be set torenv
, to read the R version to install from the
renv.lock
file (#701, @iqis).[setup-r]
: now installs Rtools43 for R 4.3.0 (current R-next) and later (#714).[setup-r-dependencies]
: new input parameter:upgrade
, whether to install the latest available package
versions. Defaults toFALSE
.- `[setup-tinyte...
v1
This is a sliding tag, and we introduce non-breaking changes to it.
v1.0.2
(2022-10-24)
The v1
versions of the actions are now formally deprecated, and they generate warning messages.
v1.0.1
(2021-12-15)
[setup-r]
and[setup-r-dependencies]
do not treat R versiondevel-ucrt
specially any more,
and it is equivalent todevel
.