Skip to content

Commit e782c3a

Browse files
authored
Merge pull request #2612 from github/angelapwen/report-linux-runner-release
Telemetry: report OS release for GitHub-hosted Linux runners
2 parents e3c67a0 + f9ada54 commit e782c3a

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

lib/status-report.js

+3-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/status-report.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/status-report.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import {
1010
getWorkflowRunAttempt,
1111
getActionVersion,
1212
getRequiredInput,
13+
isSelfHostedRunner,
1314
} from "./actions-util";
1415
import { getAnalysisKey, getApiClient } from "./api-client";
1516
import { type Config } from "./config-utils";
@@ -340,7 +341,9 @@ export async function createStatusReportBase(
340341
// Values other than X86, X64, ARM, or ARM64 are discarded server side
341342
statusReport.runner_arch = process.env["RUNNER_ARCH"];
342343
}
343-
if (runnerOs === "Windows" || runnerOs === "macOS") {
344+
if (!(runnerOs === "Linux" && isSelfHostedRunner())) {
345+
// We do not report the release number for Linux self-hosted runners
346+
// because the custom build suffix may be private customer information.
344347
statusReport.runner_os_release = os.release();
345348
}
346349
if (codeQlCliVersion !== undefined) {

0 commit comments

Comments
 (0)