From b53c54f73d3a815bd964ea0e95969a4f1d64692f Mon Sep 17 00:00:00 2001 From: Christopher Homberger Date: Mon, 23 Feb 2026 14:09:30 +0100 Subject: [PATCH] fix last error --- pkg/runner/run_context_other.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/runner/run_context_other.go b/pkg/runner/run_context_other.go index 9235a5df..e4826a10 100644 --- a/pkg/runner/run_context_other.go +++ b/pkg/runner/run_context_other.go @@ -4,13 +4,13 @@ package runner import ( "context" - "fmt" + "errors" "gitea.com/gitea/act_runner/pkg/common" ) func (rc *RunContext) startTartEnvironment() common.Executor { return func(_ context.Context) error { - return fmt.Errorf("you need macOS for tart") + return errors.New("you need macOS for tart") } }