From fb976cf743415508aa644ce40cbefdc6e13b1822 Mon Sep 17 00:00:00 2001 From: Andrei Horodniceanu Date: Thu, 11 Jul 2024 13:07:59 +0300 Subject: [PATCH] action.yml: Stop defaulting to dmd-latest as the D compiler There is already code in the action that picks between dmd-latest and ldc-latest based on the CPU architecture when a D compiler is not specified. Having the default value in action.yml prevented this code from ever running. This leads to users receiving an error message and having to specify `dc: ldc` manually. Bug: https://github.com/dlang-community/setup-dlang/issues/78 Signed-off-by: Andrei Horodniceanu --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index c7d02e9..e9b5157 100644 --- a/action.yml +++ b/action.yml @@ -4,7 +4,7 @@ author: "Mihails Strasuns" inputs: compiler: description: "Compiler version string, for example 'dmd-latest' or 'ldc-1.20.1'" - default: "dmd-latest" + required: false dub: description: "DUB version string, for example 'latest' or '1.29.0'" required: false