Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: actions/runner
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.314.0
Choose a base ref
...
head repository: actions/runner
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2.314.1
Choose a head ref
  • 3 commits
  • 4 files changed
  • 3 contributors

Commits on Feb 26, 2024

  1. Release v2.314.0

    luketomlinson committed Feb 26, 2024
    Copy the full SHA
    bc79e85 View commit details

Commits on Feb 27, 2024

  1. fix summaries for actions results (#3174)

    * fix summaries for actions results
    
    * remove negative
    SrRyan authored and TingluoHuang committed Feb 27, 2024
    Copy the full SHA
    1a6dfd0 View commit details
  2. Create 2.314.1 runner patch.

    TingluoHuang committed Feb 27, 2024
    Copy the full SHA
    976290d View commit details
Showing with 5 additions and 3 deletions.
  1. +2 −0 releaseNote.md
  2. +1 −1 releaseVersion
  3. +1 −1 src/Runner.Worker/FileCommandManager.cs
  4. +1 −1 src/runnerversion
2 changes: 2 additions & 0 deletions releaseNote.md
Original file line number Diff line number Diff line change
@@ -9,10 +9,12 @@
* 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
* 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
* @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
* @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

2 changes: 1 addition & 1 deletion releaseVersion
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<Update to ./src/runnerversion when creating release>
2.314.1
2 changes: 1 addition & 1 deletion src/Runner.Worker/FileCommandManager.cs
Original file line number Diff line number Diff line change
@@ -244,7 +244,7 @@ public void ProcessCommand(IExecutionContext context, string filePath, Container
if (resultsReceiverEndpoint != null)
{
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)
context.Root.QueueSummaryFile(attachmentName, scrubbedFilePath, stepId);
}
2 changes: 1 addition & 1 deletion src/runnerversion
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.314.0
2.314.1