Support specifying allow_reresolve (#107)

This commit is contained in:
Curtis Vogt
2024-04-16 11:23:23 -05:00
committed by GitHub
parent 3a055a9a24
commit 7e64b540de
3 changed files with 12 additions and 2 deletions

View File

@@ -6,6 +6,7 @@ include(joinpath(@__DIR__, "autodetect-dependabot.jl"))
function kwargs(; coverage,
force_latest_compatible_version,
allow_reresolve,
julia_args::AbstractVector{<:AbstractString}=String[])
if coverage isa AbstractString
coverage = parse(Bool, coverage)
@@ -51,6 +52,10 @@ function kwargs(; coverage,
kwargs_dict[:force_latest_compatible_version] = force_latest_compatible_version::Bool
end
if VERSION >= v"1.9"
kwargs_dict[:allow_reresolve] = parse(Bool, allow_reresolve)
end
return kwargs_dict
end