From a041b34ac5a5a78b5dababeff33d3cb8ec8e8158 Mon Sep 17 00:00:00 2001 From: Atrox Date: Wed, 16 Jan 2019 13:58:18 +0100 Subject: [PATCH] add windows compatibility --- actions/parser.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/parser.go b/actions/parser.go index 8bf6cbc..1458d88 100644 --- a/actions/parser.go +++ b/actions/parser.go @@ -38,7 +38,7 @@ func ParseWorkflows(workingDir string, workflowPath string) (Workflows, error) { } workflows.WorkingDir = workingDir workflows.WorkflowPath = workflowPath - workflows.TempDir, err = ioutil.TempDir("/tmp", "act-") + workflows.TempDir, err = ioutil.TempDir("", "act-") if err != nil { return nil, err }