I use renv to manage R package dependencies. The global cache works great for all packages that are installed with install.packages command; however, if I install the same package with devtools::install_version command it only installs it locally. As a result, any changes in the version number require manual installations again and again.
Do you have any idea how to address this issue?