From cb1da621264f40633ef37e4f0e1617f4e0de6d41 Mon Sep 17 00:00:00 2001 From: Justin Hutchings Date: Thu, 18 Aug 2022 16:55:46 -0700 Subject: [PATCH] Add default value for go-mod-path --- action.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 12e4530..3ad7589 100644 --- a/action.yml +++ b/action.yml @@ -11,7 +11,8 @@ inputs: description: 'User provided map of max key/value pairs of metadata to include with the snapshot e.g. {"lastModified": "12-31-2022"}' go-mod-path: required: true - description: 'Repo path to the go.mod file used to detect dependencies for the Go build target' + description: 'Repo path to the go.mod file used to detect dependencies for the Go build target. Defaults to go.mod in the root of the repository.' + default: 'go.mod' go-build-target: required: true description: 'Build target to detect build dependencies. If unspecified, will use "all", with will detect all dependencies used in all build targets (including tests and tools).'