From 74cb9034e388365142a93bc02579e856886164ba Mon Sep 17 00:00:00 2001 From: Earl Warren Date: Mon, 11 Mar 2024 21:36:04 +0700 Subject: [PATCH] Support cloning remote actions from insecure Gitea instances (#508) (cherry picked from commit 75006a59cc4e6d18653926ec2578de5072ba6c32) --- internal/app/run/runner.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/app/run/runner.go b/internal/app/run/runner.go index 78bb956..ee12165 100644 --- a/internal/app/run/runner.go +++ b/internal/app/run/runner.go @@ -217,6 +217,7 @@ func (r *Runner) run(ctx context.Context, task *runnerv1.Task, reporter *report. PlatformPicker: r.labels.PickPlatform, Vars: task.Vars, ValidVolumes: r.cfg.Container.ValidVolumes, + InsecureSkipTLS: r.cfg.Runner.Insecure, } rr, err := runner.New(runnerConfig)