From dec260920fc8a1c7e92bed4c1d1be9dd012fe86e Mon Sep 17 00:00:00 2001 From: Josh Soref Date: Mon, 30 Mar 2020 07:45:06 -0400 Subject: [PATCH] spelling: deprecate (#394) --- src/Runner.Worker/ActionManager.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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"); }