Skip to content

Commit c8bd630

Browse files
committed
Force installing ggplot2 version 3.5.2 to avoid CI errors
1 parent 5f509af commit c8bd630

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/lint.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232

3333
- name: Install packages, including some pinned package versions
3434
run: |
35-
Rscript -e 'install.packages("remotes")'
35+
Rscript -e 'install.packages(c("remotes", "RcppArmadillo"))'
3636
Rscript -e 'remotes::install_version("scales", version="1.3.0")'
3737
Rscript -e 'remotes::install_version("pkgdown", version="2.0.7")'
3838
Rscript -e 'remotes::install_version("lintr", version="3.0.0")'
@@ -41,12 +41,12 @@ jobs:
4141
Rscript -e 'remotes::install_version("cowplot", version="1.1.3")'
4242
Rscript -e 'remotes::install_version("ggpubr", version="0.6.0")'
4343
Rscript -e 'remotes::install_version("ggExtra", version="0.10.1")'
44-
Rscript -e 'remotes::install_github("elgabbas/ecokit")'
45-
Rscript -e 'remotes::install_github("hmsc-r/HMSC")'
44+
Rscript -e 'remotes::install_github(c("elgabbas/ecokit", "hmsc-r/HMSC", "babaknaimi/sdm", "EmilHvitfeldt/paletteer", "isciences/exactextractr", "rvalavi/blockCV", "YuLab-SMU/ggtree"))'
4645
4746
- name: Install remaining dependencies
4847
run: |
4948
Rscript -e 'remotes::install_deps(dependencies=c("Depends", "Imports"))'
49+
5050
# Run R CMD check (without relying on r-lib/actions)
5151
- name: Run R CMD check
5252
run: |

0 commit comments

Comments
 (0)