From e3eb439fad4f9aba7da2667e7510e4a46ebc46e1 Mon Sep 17 00:00:00 2001 From: Venkateshprasad <32921645+ven-k@users.noreply.github.com> Date: Mon, 4 Nov 2024 17:47:59 +0530 Subject: [PATCH] fix: install the default registries for version > 1.8 (#55) --- action.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 59855db..b52825e 100644 --- a/action.yml +++ b/action.yml @@ -46,7 +46,12 @@ runs: if VERSION >= v"1.5-" - Pkg.Registry.add("General") + if VERSION >= v"1.8-" + # Install the default registries + Pkg.Registry.add() + else + Pkg.Registry.add("General") + end # If provided add local registries if !isempty("${{ inputs.localregistry }}")