diff --git a/pkg/runner/job_executor.go b/pkg/runner/job_executor.go index 8cf87a4..5c3e3b1 100644 --- a/pkg/runner/job_executor.go +++ b/pkg/runner/job_executor.go @@ -108,7 +108,7 @@ func newJobExecutor(info jobInfo, sf stepFactory, rc *RunContext) common.Executo if ctx.Err() == context.Canceled { // in case of an aborted run, we still should execute the // post steps to allow cleanup. - ctx, cancel = context.WithTimeout(context.Background(), 5*time.Minute) + ctx, cancel = context.WithTimeout(WithJobLogger(context.Background(), rc.Run.JobID, rc.String(), rc.Config, &rc.Masks, rc.Matrix), 5*time.Minute) defer cancel() } return postExecutor(ctx)