diff --git a/src/Runner.Worker/ActionManager.cs b/src/Runner.Worker/ActionManager.cs index 7cfbe7b59..e73aa17dd 100644 --- a/src/Runner.Worker/ActionManager.cs +++ b/src/Runner.Worker/ActionManager.cs @@ -51,11 +51,11 @@ namespace GitHub.Runner.Worker List containerSetupSteps = new List(); IEnumerable actions = steps.OfType(); - // TODO: Depreciate the PREVIEW_ACTION_TOKEN + // TODO: Deprecate the PREVIEW_ACTION_TOKEN // Log even if we aren't using it to ensure users know. if (!string.IsNullOrEmpty(executionContext.Variables.Get("PREVIEW_ACTION_TOKEN"))) { - executionContext.Warning("The 'PREVIEW_ACTION_TOKEN' secret is depreciated. Please remove it from the repository's secrets"); + executionContext.Warning("The 'PREVIEW_ACTION_TOKEN' secret is deprecated. Please remove it from the repository's secrets"); } // Clear the cache (for self-hosted runners) @@ -512,7 +512,7 @@ namespace GitHub.Runner.Worker var authToken = Environment.GetEnvironmentVariable("_GITHUB_ACTION_TOKEN"); if (string.IsNullOrEmpty(authToken)) { - // TODO: Depreciate the PREVIEW_ACTION_TOKEN + // TODO: Deprecate the PREVIEW_ACTION_TOKEN authToken = executionContext.Variables.Get("PREVIEW_ACTION_TOKEN"); }