I am trying to check {bit64} on a large variety of OS/R version combinations.
I'm getting a ton of failures, mostly expected, but also have many distracting spurious failures due to warnings like this:
* checking whether package ‘bit64’ can be installed ... WARNING
Warning: Found the following significant warnings:
Warning: package ‘bit’ was built under R version 3.6.3
See ‘/home/runner/work/bit64/bit64/check/bit64.Rcheck/00install.out’ for details.
IIUC this will be because a pre-compiled version of my upstream dependency {bit} was used for R CMD check.
To avoid this, again IINM, I'll need to force {bit} to be compiled on the same runner as {bit64} so there's no version mismatch.
How can I do this in the r-lib/actions/setup-r / r-lib/actions/setup-r-dependencies actions?