aboutsummaryrefslogtreecommitdiff
path: root/internal/template
diff options
context:
space:
mode:
Diffstat (limited to 'internal/template')
-rw-r--r--internal/template/template.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/template/template.go b/internal/template/template.go
index 445c0881..9c6ce5b1 100644
--- a/internal/template/template.go
+++ b/internal/template/template.go
@@ -39,7 +39,7 @@ var (
// FuncMap returns a list of user-defined template functions.
func FuncMap() []template.FuncMap {
funcMapOnce.Do(func() {
- funcMap = []template.FuncMap{map[string]interface{}{
+ funcMap = []template.FuncMap{map[string]any{
"BuildCommit": func() string {
return conf.BuildCommit
},