diff --git a/src/steps/composed/executors/composable.ts b/src/steps/composed/executors/composable.ts index 26e9afe..cd5d3b8 100644 --- a/src/steps/composed/executors/composable.ts +++ b/src/steps/composed/executors/composable.ts @@ -5,7 +5,7 @@ import { ExecutionBindings, Step, StepExecutor, StepOutput } from '../../../comm * on top the given step executor. */ export class ComposableStepExecutor implements StepExecutor { - private stepExecutor: StepExecutor; + private readonly stepExecutor: StepExecutor; constructor(stepExecutor: StepExecutor) { this.stepExecutor = stepExecutor;