44
44
GITHUB_PAT : ${{ secrets.GITHUB_TOKEN }}
45
45
46
46
steps :
47
- - uses : actions/checkout@v2
47
+ - uses : actions/checkout@v3
48
48
49
49
- name : Do autorelease increment, tagging, and environment setup
50
50
if : github.event_name == 'push' && github.ref == 'refs/heads/master'
68
68
- uses : r-lib/actions/setup-r@v2
69
69
with :
70
70
r-version : ${{ matrix.config.r }}
71
- rtools-version : ${{ matrix.config.rtools }}
72
- http-user-agent : ${{ matrix.config.http-user-agent }}
71
+ # rtools-version: ${{ matrix.config.rtools }} # Not present in the matrix...
72
+ # http-user-agent: ${{ matrix.config.http-user-agent }} # Not present in the matrix...
73
73
74
74
- uses : r-lib/actions/setup-pandoc@v2
75
75
@@ -102,7 +102,7 @@ jobs:
102
102
remotes::install_deps(dependencies = TRUE)
103
103
shell : Rscript {0}
104
104
105
- - name : Install R package dependencies
105
+ - name : Install R package dependencies on Windows and macOS
106
106
if : runner.os != 'Linux'
107
107
run : |
108
108
# Show the repos:
@@ -128,12 +128,11 @@ jobs:
128
128
run : |
129
129
remotes::install_cran("rcmdcheck")
130
130
remotes::install_cran("git2r")
131
+ remotes::install_cran("sessioninfo")
131
132
#remotes::install_cran("drat")
132
- # Test using the modfied drat:
133
+ # Using the modfied drat that supports big sur :
133
134
#remotes::install_github(repo = "stoxproject/drat", dependencies = FALSE)
134
135
remotes::install_github(repo = 'eddelbuettel/drat', dependencies = FALSE)
135
-
136
- remotes::install_cran("sessioninfo")
137
136
shell : Rscript {0}
138
137
139
138
- name : Show .Platform$pkgType
0 commit comments