Compare commits

...

3 Commits

Author SHA1 Message Date
Tingluo Huang
976290d966 Create 2.314.1 runner patch. 2024-02-27 15:28:02 -05:00
Ryan Troost
1a6dfd0823 fix summaries for actions results (#3174)
* fix summaries for actions results

* remove negative
2024-02-27 15:25:22 -05:00
Luke Tomlinson
bc79e859d7 Release v2.314.0 2024-02-26 13:34:12 -05:00
4 changed files with 5 additions and 3 deletions

View File

@@ -9,10 +9,12 @@
* Remove USE_BROKER_FLOW by @luketomlinson in https://github.com/actions/runner/pull/3162 * Remove USE_BROKER_FLOW by @luketomlinson in https://github.com/actions/runner/pull/3162
* Refresh Token for BrokerServer by @luketomlinson in https://github.com/actions/runner/pull/3167 * Refresh Token for BrokerServer by @luketomlinson in https://github.com/actions/runner/pull/3167
* Better step timeout message. by @TingluoHuang in https://github.com/actions/runner/pull/3166 * Better step timeout message. by @TingluoHuang in https://github.com/actions/runner/pull/3166
* Fix summaries for actions results by @SrRyan in https://github.com/actions/runner/pull/3174
## New Contributors ## New Contributors
* @davidomid made their first contribution in https://github.com/actions/runner/pull/3135 * @davidomid made their first contribution in https://github.com/actions/runner/pull/3135
* @enescakir made their first contribution in https://github.com/actions/runner/pull/3089 * @enescakir made their first contribution in https://github.com/actions/runner/pull/3089
* @SrRyan made their first contribution in https://github.com/actions/runner/pull/3174
**Full Changelog**: https://github.com/actions/runner/compare/v2.313.0...v2.314.0 **Full Changelog**: https://github.com/actions/runner/compare/v2.313.0...v2.314.0

View File

@@ -1 +1 @@
<Update to ./src/runnerversion when creating release> 2.314.1

View File

@@ -244,7 +244,7 @@ namespace GitHub.Runner.Worker
if (resultsReceiverEndpoint != null) if (resultsReceiverEndpoint != null)
{ {
Trace.Info($"Queueing results file ({filePath}) for attachment upload ({attachmentName})"); Trace.Info($"Queueing results file ({filePath}) for attachment upload ({attachmentName})");
var stepId = context.Id; var stepId = context.IsEmbedded ? context.EmbeddedId : context.Id;
// Attachments must be added to the parent context (job), not the current context (step) // Attachments must be added to the parent context (job), not the current context (step)
context.Root.QueueSummaryFile(attachmentName, scrubbedFilePath, stepId); context.Root.QueueSummaryFile(attachmentName, scrubbedFilePath, stepId);
} }

View File

@@ -1 +1 @@
2.314.0 2.314.1