package main import ( "fmt" "os" "time" ga "github.com/sethvargo/go-githubactions" ) func main() { username := ga.GetInput("username") fmt.Printf("username is %s\n", username) ga.SetOutput("time", time.Now().Format("2006-01-02 15:04:05")) }