From 6621b04458b9fbaf8b6664efd86886b2ebbec01d Mon Sep 17 00:00:00 2001 From: Earl Warren Date: Thu, 9 Mar 2023 13:36:39 +0100 Subject: [PATCH] s/Printf/Print/ --- cmd/actions.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/actions.go b/cmd/actions.go index d917f27da2..f7aa6d92f2 100644 --- a/cmd/actions.go +++ b/cmd/actions.go @@ -62,6 +62,6 @@ func runActionsRegistrationToken(stdCtx context.Context, ownerID, repoID int64) } else if err != nil { log.Fatalf("GetUnactivatedRunnerToken %v", err) } - fmt.Printf(token.Token) + fmt.Print(token.Token) return nil }