Compare updated workflow parser for ActionManifestManager (#4111)

This commit is contained in:
eric sciple
2025-11-17 19:15:46 -06:00
committed by GitHub
parent 8b184c3871
commit a54f380b0e
15 changed files with 2366 additions and 82 deletions

View File

@@ -206,7 +206,7 @@ namespace GitHub.Runner.Worker
// Merge the default inputs from the definition
if (definition.Data?.Inputs != null)
{
var manifestManager = HostContext.GetService<IActionManifestManager>();
var manifestManager = HostContext.GetService<IActionManifestManagerWrapper>();
foreach (var input in definition.Data.Inputs)
{
string key = input.Key.AssertString("action input name").Value;