Skip to content

Commit 8131246

Browse files
authored
Improve the out-of-date warning message. (#3595)
1 parent 7211a53 commit 8131246

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Runner.Worker/JobRunner.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -532,7 +532,7 @@ private async Task WarningOutdatedRunnerAsync(IExecutionContext jobContext, Pipe
532532

533533
if (result == TaskResult.Failed && warnOnFailedJob)
534534
{
535-
jobContext.Warning($"This job failure may be caused by using an out of date self-hosted runner. You are currently using runner version {currentVersion}. Please update to the latest version {serverPackages[0].Version}");
535+
jobContext.Warning($"This job failure may be caused by using an out of date version of GitHub runner on your self-hosted runner. You are currently using GitHub runner version {currentVersion}. Please update to the latest version {serverPackages[0].Version}");
536536
}
537537
else if (warnOnOldRunnerVersion)
538538
{

0 commit comments

Comments
 (0)