Skip to content

data_read() can encrypt/decrypt R data files #2933

data_read() can encrypt/decrypt R data files

data_read() can encrypt/decrypt R data files #2933

Triggered via pull request April 9, 2026 12:05
Status Success
Total duration 3m 18s
Artifacts

lint.yaml

on: pull_request
Fit to window
Zoom out
Zoom in

Annotations

11 warnings
lint / lint
Node.js 20 actions are deprecated. The following actions are running on Node.js 20 and may not work as expected: actions/cache@v4, r-lib/actions/setup-r@6f6e5bc62fba3a704f74e7ad7ef7676c5c6a2590. Actions will be forced to run with Node.js 24 by default starting June 2nd, 2026. Node.js 20 will be removed from the runner on September 16th, 2026. Please check if updated versions of these actions are available that support Node.js 24. To opt into Node.js 24 now, set the FORCE_JAVASCRIPT_ACTIONS_TO_NODE24=true environment variable on the runner or in your workflow file. Once Node.js 24 becomes the default, you can temporarily opt out by setting ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=true. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
lint / lint: R/utils_standardize_center.R#L265
file=R/utils_standardize_center.R,line=265,col=7,[object_overwrite_linter] 'scale' is an exported object from package 'base'. Avoid re-using such symbols.
lint / lint: R/utils_standardize_center.R#L263
file=R/utils_standardize_center.R,line=263,col=7,[object_overwrite_linter] 'scale' is an exported object from package 'base'. Avoid re-using such symbols.
lint / lint: R/utils_standardize_center.R#L260
file=R/utils_standardize_center.R,line=260,col=5,[object_overwrite_linter] 'scale' is an exported object from package 'base'. Avoid re-using such symbols.
lint / lint: R/utils_standardize_center.R#L181
file=R/utils_standardize_center.R,line=181,col=7,[if_not_else_linter] Prefer `if (A) x else y` to the less-readable `if (!A) y else x` in a simple if/else statement.
lint / lint: R/utils_standardize_center.R#L88
file=R/utils_standardize_center.R,line=88,col=3,[function_argument_linter] Arguments without defaults should come before arguments with defaults.
lint / lint: R/standardize.models.R#L395
file=R/standardize.models.R,line=395,col=13,[undesirable_function_linter] Avoid undesirable function "mapply".
lint / lint: R/standardize.models.R#L104
file=R/standardize.models.R,line=104,col=3,[function_argument_linter] Arguments without defaults should come before arguments with defaults.
lint / lint: R/data_write.R#L122
file=R/data_write.R,line=122,col=3,[function_argument_linter] Arguments without defaults should come before arguments with defaults.
lint / lint: R/data_to_long.R#L143
file=R/data_to_long.R,line=143,col=3,[function_argument_linter] Arguments without defaults should come before arguments with defaults. Consider setting the default to NULL and using is.null() instead of using missing()
lint / lint: R/data_codebook.R#L410
file=R/data_codebook.R,line=410,col=14,[nzchar_linter] Use nzchar(x) instead of x != "". Note that unlike nzchar(), NE coerces to character, so you'll have to use as.character() if x is a factor. Whenever missing data is possible, please take care to use nzchar(., keepNA = TRUE); nzchar(NA) is TRUE by default.