mirror of
https://github.com/actions/runner.git
synced 2025-12-13 10:05:23 +00:00
Fix IDE0090 (#2211)
This commit is contained in:
@@ -6,7 +6,7 @@ namespace GitHub.Runner.Worker
|
||||
{
|
||||
public sealed class GitHubContext : DictionaryContextData, IEnvironmentContextData
|
||||
{
|
||||
private readonly HashSet<string> _contextEnvAllowlist = new HashSet<string>(StringComparer.OrdinalIgnoreCase)
|
||||
private readonly HashSet<string> _contextEnvAllowlist = new(StringComparer.OrdinalIgnoreCase)
|
||||
{
|
||||
"action_path",
|
||||
"action_ref",
|
||||
|
||||
Reference in New Issue
Block a user