From 790d1776e7217866e33d5eec16071f422546eadc Mon Sep 17 00:00:00 2001 From: Earl Warren Date: Sat, 11 Jan 2025 08:45:08 +0100 Subject: [PATCH] fix: do not ignore the config container.options when starting a job --- act/runner/run_context.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/act/runner/run_context.go b/act/runner/run_context.go index 82443f8a..ab183f34 100644 --- a/act/runner/run_context.go +++ b/act/runner/run_context.go @@ -555,7 +555,7 @@ func (rc *RunContext) startJobContainer() common.Executor { ValidVolumes: rc.Config.ValidVolumes, JobOptions: rc.options(ctx), - ConfigOptions: "", + ConfigOptions: rc.Config.ContainerOptions, }) if rc.JobContainer == nil { return errors.New("Failed to create job container")