This will check to see if all your OHA packages are up-to-date, and will install after an interactive confirmation. The versions may match between GitHub and your local environment, but may still be behind on recent commits that do not merit a full version update.
oha_update(install = FALSE, core_only = FALSE)
if (FALSE) { # \dontrun{
#list of what packages are out of date/non installed w/ code to install
oha_update()
#interactively install core packages
oha_update(install = TRUE, core_only = TRUE)
#automatically install all OHA packages
oha_update(install = TRUE)
} # }