diff --git a/pkg/model/workflow.go b/pkg/model/workflow.go index b51a59d..273789b 100644 --- a/pkg/model/workflow.go +++ b/pkg/model/workflow.go @@ -276,10 +276,10 @@ const ( //StepTypeUsesDockerURL is all steps that have a `uses` that is of the form `docker://...` StepTypeUsesDockerURL - //StepTypeUsesActionLocal is all steps that have a `uses` that is a reference to a github repo + //StepTypeUsesActionLocal is all steps that have a `uses` that is a local action in a subdirectory StepTypeUsesActionLocal - //StepTypeUsesActionRemote is all steps that have a `uses` that is a local action in a subdirectory + //StepTypeUsesActionRemote is all steps that have a `uses` that is a reference to a github repo StepTypeUsesActionRemote ) diff --git a/pkg/runner/expression_test.go b/pkg/runner/expression_test.go index 76c02f5..36d1bb5 100644 --- a/pkg/runner/expression_test.go +++ b/pkg/runner/expression_test.go @@ -121,8 +121,8 @@ func TestInterpolate(t *testing.T) { Workdir: ".", }, Env: map[string]string{ - "keywithnothing": "valuewithnothing", - "key-with-hyphens": "value-with-hyphens", + "keywithnothing": "valuewithnothing", + "key-with-hyphens": "value-with-hyphens", "key_with_underscores": "value_with_underscores", }, Run: &model.Run{