51
51
fail-fast : false
52
52
matrix :
53
53
config :
54
- - { os: ubuntu-latest, r: '4.2', bioc: '3.15 ', cont: "bioconductor/bioconductor_docker:RELEASE_3_15 ", rspm: "https://packagemanager.rstudio.com/cran/__linux__/focal/latest" }
55
- - { os: macOS-latest, r: '4.2', bioc: '3.15 '}
56
- - { os: windows-latest, r: '4.2', bioc: '3.15 '}
54
+ - { os: ubuntu-latest, r: '4.2', bioc: '3.16 ', cont: "bioconductor/bioconductor_docker:RELEASE_3_16 ", rspm: "https://packagemanager.rstudio.com/cran/__linux__/focal/latest" }
55
+ - { os: macOS-latest, r: '4.2', bioc: '3.16 '}
56
+ - { os: windows-latest, r: '4.2', bioc: '3.16 '}
57
57
env :
58
58
R_REMOTES_NO_ERRORS_FROM_WARNINGS : true
59
59
RSPM : ${{ matrix.config.rspm }}
@@ -81,14 +81,14 @@ jobs:
81
81
# # R is already included in the Bioconductor docker images
82
82
- name : Setup R from r-lib
83
83
if : runner.os != 'Linux'
84
- uses : r-lib/actions/setup-r@master
84
+ uses : r-lib/actions/setup-r@v2
85
85
with :
86
86
r-version : ${{ matrix.config.r }}
87
87
88
88
# # pandoc is already included in the Bioconductor docker images
89
89
- name : Setup pandoc from r-lib
90
90
if : runner.os != 'Linux'
91
- uses : r-lib/actions/setup-pandoc@master
91
+ uses : r-lib/actions/setup-pandoc@v2
92
92
93
93
- name : Query dependencies
94
94
run : |
@@ -98,19 +98,19 @@ jobs:
98
98
99
99
- name : Cache R packages
100
100
if : " !contains(github.event.head_commit.message, '/nocache') && runner.os != 'Linux'"
101
- uses : actions/cache@v2
101
+ uses : actions/cache@v3
102
102
with :
103
103
path : ${{ env.R_LIBS_USER }}
104
- key : ${{ env.cache-version }}-${{ runner.os }}-biocversion-RELEASE_3_15 -r-4.2-${{ hashFiles('.github/depends.Rds') }}
105
- restore-keys : ${{ env.cache-version }}-${{ runner.os }}-biocversion-RELEASE_3_15 -r-4.2-
104
+ key : ${{ env.cache-version }}-${{ runner.os }}-biocversion-RELEASE_3_16 -r-4.2-${{ hashFiles('.github/depends.Rds') }}
105
+ restore-keys : ${{ env.cache-version }}-${{ runner.os }}-biocversion-RELEASE_3_16 -r-4.2-
106
106
107
107
- name : Cache R packages on Linux
108
108
if : " !contains(github.event.head_commit.message, '/nocache') && runner.os == 'Linux' "
109
- uses : actions/cache@v2
109
+ uses : actions/cache@v3
110
110
with :
111
111
path : /home/runner/work/_temp/Library
112
- key : ${{ env.cache-version }}-${{ runner.os }}-biocversion-RELEASE_3_15 -r-4.2-${{ hashFiles('.github/depends.Rds') }}
113
- restore-keys : ${{ env.cache-version }}-${{ runner.os }}-biocversion-RELEASE_3_15 -r-4.2-
112
+ key : ${{ env.cache-version }}-${{ runner.os }}-biocversion-RELEASE_3_16 -r-4.2-${{ hashFiles('.github/depends.Rds') }}
113
+ restore-keys : ${{ env.cache-version }}-${{ runner.os }}-biocversion-RELEASE_3_16 -r-4.2-
114
114
115
115
- name : Install Linux system dependencies
116
116
if : runner.os == 'Linux'
@@ -239,7 +239,9 @@ jobs:
239
239
dir('check', 'tar.gz$', full.names = TRUE),
240
240
`quit-with-status` = TRUE,
241
241
`no-check-R-ver` = TRUE,
242
- `no-check-bioc-help` = TRUE
242
+ `no-check-bioc-help` = TRUE,
243
+ `no-check-library-calls` = TRUE,
244
+ `no-check-coding-practices` = TRUE
243
245
)
244
246
shell : Rscript {0}
245
247
@@ -270,8 +272,7 @@ jobs:
270
272
271
273
- name : Upload check results
272
274
if : failure()
273
- uses : actions/upload-artifact@master
275
+ uses : actions/upload-artifact@v3
274
276
with :
275
- name : ${{ runner.os }}-biocversion-RELEASE_3_15 -r-4.2-results
277
+ name : ${{ runner.os }}-biocversion-RELEASE_3_16 -r-4.2-results
276
278
path : check
277
-
0 commit comments