Skip to content

Commit 3a1cdf8

Browse files
committed
Force installing ggplot2 version 3.5.2 to avoid CI errors
1 parent 00f79b5 commit 3a1cdf8

File tree

3 files changed

+18
-0
lines changed

3 files changed

+18
-0
lines changed

.github/workflows/R-CMD-check.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,12 @@ jobs:
5454
- name: Force install ggplot2 3.5.2
5555
run: Rscript -e 'remotes::install_version("ggplot2", version = "3.5.2")'
5656

57+
- name: Force install scales 1.3.0
58+
run: Rscript -e 'remotes::install_version("scales", version = "1.3.0")'
59+
60+
- name: Force install pkgdown 2.0.7
61+
run: Rscript -e 'remotes::install_version("pkgdown", version = "2.0.7")'
62+
5763
- name: Install GEOS on macOS
5864
if: matrix.config.os == 'macos-latest'
5965
run: brew install geos

.github/workflows/lint.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,12 @@ jobs:
3636
- name: Force install ggplot2 3.5.2
3737
run: Rscript -e 'remotes::install_version("ggplot2", version = "3.5.2")'
3838

39+
- name: Force install scales 1.3.0
40+
run: Rscript -e 'remotes::install_version("scales", version = "1.3.0")'
41+
42+
- name: Force install pkgdown 2.0.7
43+
run: Rscript -e 'remotes::install_version("pkgdown", version = "2.0.7")'
44+
3945
- name: Install dependencies
4046
uses: r-lib/actions/setup-r-dependencies@v2
4147
with:

.github/workflows/pkgdown.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,12 @@ jobs:
4747
- name: Force install ggplot2 3.5.2
4848
run: Rscript -e 'remotes::install_version("ggplot2", version = "3.5.2")'
4949

50+
- name: Force install scales 1.3.0
51+
run: Rscript -e 'remotes::install_version("scales", version = "1.3.0")'
52+
53+
- name: Force install pkgdown 2.0.7
54+
run: Rscript -e 'remotes::install_version("pkgdown", version = "2.0.7")'
55+
5056
- name: Install dependencies
5157
uses: r-lib/actions/setup-r-dependencies@v2
5258
with:

0 commit comments

Comments
 (0)