Skip to content

Commit 6e27f5a

Browse files
Potential fix for pull request finding
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
1 parent 397fea0 commit 6e27f5a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Runner.Worker/ActionManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ public sealed class ActionManager : RunnerService, IActionManager
8282
var containerSetupSteps = new List<JobExtensionRunner>();
8383
// Stack-local cache: same action (owner/repo@ref) is resolved only once,
8484
// even if it appears at multiple depths in a composite tree.
85-
var resolvedDownloadInfos = new Dictionary<string, WebApi.ActionDownloadInfo>(StringComparer.Ordinal);
85+
var resolvedDownloadInfos = new Dictionary<string, WebApi.ActionDownloadInfo>(StringComparer.OrdinalIgnoreCase);
8686
var depth = 0;
8787
// We are running at the start of a job
8888
if (rootStepId == default(Guid))

0 commit comments

Comments
 (0)