You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -32,7 +32,7 @@ We are taking the following steps to better direct requests related to GitHub Ac
32
32
33
33
2. High Priority bugs can be reported through Community Discussions or you can report these to our support team https://support.github.com/contact/bug-report.
34
34
35
-
3. Security Issues should be handled as per our [security.md](security.md)
35
+
3. Security Issues should be handled as per our [SECURITY.md](https://github.com/actions/runner?tab=security-ov-file)
36
36
37
37
We will still provide security updates for this project and fix major breaking changes during this time.
Copy file name to clipboardExpand all lines: src/Runner.Worker/JobExtension.cs
+9Lines changed: 9 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -735,6 +735,15 @@ public async Task FinalizeJob(IExecutionContext jobContext, Pipelines.AgentJobRe
735
735
context.Global.JobTelemetry.Add(newJobTelemetry(){Type=JobTelemetryType.ConnectivityCheck,Message=$"Fail to check service connectivity. {ex.Message}"});
736
736
}
737
737
}
738
+
739
+
// Add deprecation warning annotation for Node.js 20 actions
vardeprecationMessage=$"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, 2026. Please check if updated versions of these actions are available that support Node.js 24. To opt into Node.js 24 now, set the FORCE_JAVASCRIPT_ACTIONS_TO_NODE24=true environment variable on the runner or in your workflow file. Once Node.js 24 becomes the default, you can temporarily opt out by setting ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=true. For more information see: {Constants.Runner.NodeMigration.Node20DeprecationUrl}";
0 commit comments