From 7e583ee157eb8ebdc6c356f92e3917cae6de7c78 Mon Sep 17 00:00:00 2001 From: Thomas Boop Date: Mon, 12 Feb 2024 17:37:14 -0500 Subject: [PATCH] swap to warning --- src/Runner.Worker/ActionManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Runner.Worker/ActionManager.cs b/src/Runner.Worker/ActionManager.cs index 6d7e21ae9..9e3632138 100644 --- a/src/Runner.Worker/ActionManager.cs +++ b/src/Runner.Worker/ActionManager.cs @@ -788,7 +788,7 @@ namespace GitHub.Runner.Worker (downloadInfo.Ref.StartsWith("v1.") || (downloadInfo.Ref.StartsWith("v2.") // '.' is important to avoid v10 conflict || downloadInfo.Ref == "v1" || downloadInfo.Ref == "v2"))) { - executionContext.Error($"'{downloadInfo.NameWithOwner}@{downloadInfo.Ref}' is deprecated and will be disabled on xyz. Please upgrade to 'v4'. For more information, see (blogpost here)"); + executionContext.Warning($"'{downloadInfo.NameWithOwner}@{downloadInfo.Ref}' is deprecated and will be disabled on xyz. Please upgrade to 'v4'. For more information, see (blogpost here)"); } //download and extract action in a temp folder and rename it on success