From f19c4ee70ea3dbe37682e6d3ae29e63b87d25ee0 Mon Sep 17 00:00:00 2001 From: Salman Muin Kayser Chishti Date: Wed, 11 Feb 2026 13:43:46 +0000 Subject: [PATCH] Improve deprecation message: list actions running on node20, suggest checking for updates --- src/Runner.Worker/JobExtension.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Runner.Worker/JobExtension.cs b/src/Runner.Worker/JobExtension.cs index 3ad81e777..2adf8b42e 100644 --- a/src/Runner.Worker/JobExtension.cs +++ b/src/Runner.Worker/JobExtension.cs @@ -740,7 +740,7 @@ namespace GitHub.Runner.Worker if (context.Global.DeprecatedNode20Actions?.Count > 0) { var actionsList = string.Join(", ", context.Global.DeprecatedNode20Actions); - var deprecationMessage = $"Node.js 20 actions are deprecated. Actions will be forced to run with Node.js 24 by default starting June 2nd, 2025. Please update the following actions to use Node.js 24: {actionsList}. For more information see: {Constants.Runner.NodeMigration.Node20DeprecationUrl}"; + var deprecationMessage = $"Node.js 20 actions are deprecated. The following actions are running on Node.js 20 and may not work as expected: {actionsList}. Actions will be forced to run with Node.js 24 by default starting June 2nd, 2025. Please check if updated versions of these actions are available that support Node.js 24. For more information see: {Constants.Runner.NodeMigration.Node20DeprecationUrl}"; context.Warning(deprecationMessage); } }