Skip to content

Commit

Permalink
fix: setup composite expression evaluator
Browse files Browse the repository at this point in the history
The RunContext does contain a cached ExpressionEvaluator.
This should be the case the composite RunContext as well.
  • Loading branch information
KnisterPeter authored and github-actions committed Nov 10, 2022
1 parent 058efb4 commit 8d69eac
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions pkg/runner/action_composite.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ func newCompositeRunContext(ctx context.Context, parent *RunContext, step action
Parent: parent,
EventJSON: parent.EventJSON,
}
compositerc.ExprEval = compositerc.NewExpressionEvaluator(ctx)

return compositerc
}
Expand Down

0 comments on commit 8d69eac

Please sign in to comment.