10000 Merge main into releases/v3 by github-actions[bot] · Pull Request #2616 · github/codeql-action · GitHub
[go: up one dir, main page]

Skip to content

Merge main into releases/v3 #2616

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 18 commits into from
Nov 20, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
ecde4d2
Bump cross-spawn from 7.0.3 to 7.0.6 in the npm_and_yarn group
dependabot[bot] Nov 18, 2024
db67881
Update checked-in dependencies
github-actions[bot] Nov 18, 2024
e782c3a
Merge pull request #2612 from github/angelapwen/report-linux-runner-r…
angelapwen Nov 18, 2024
cba5fb5
Merge pull request #2613 from github/dependabot/npm_and_yarn/npm_and_…
aeisenberg Nov 19, 2024
8f3b487
Start-proxy: Fetch OS specific binary
marcogario Nov 19, 2024
a6c8729
Merge pull request #2614 from github/marcogario/per-platform-proxy
marcogario Nov 19, 2024
67b73ea
Update changelog for v3.27.5
github-actions[bot] Nov 19, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Telemetry: report OS release for GitHub-hosted Linux runners
  • Loading branch information
angelapwen committed Nov 18, 2024
commit f9ada54538b47b6db28c4d11f53848689968909e
4 changes: 3 additions & 1 deletion lib/status-report.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/status-report.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion src/status-report.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import {
getWorkflowRunAttempt,
getActionVersion,
getRequiredInput,
isSelfHostedRunner,
} from "./actions-util";
import { getAnalysisKey, getApiClient } from "./api-client";
import { type Config } from "./config-utils";
Expand Down Expand Up @@ -340,7 +341,9 @@ export async function createStatusReportBase(
// Values other than X86, X64, ARM, or ARM64 are discarded server side
statusReport.runner_arch = process.env["RUNNER_ARCH"];
}
if (runnerOs === "Windows" || runnerOs === "macOS") {
if (!(runnerOs === "Linux" && isSelfHostedRunner())) {
// We do not report the release number for Linux self-hosted runners
// because the custom build suffix may be private customer information.
statusReport.runner_os_release = os.release();
}
if (codeQlCliVersion !== undefined) {
Expand Down
Loading
0