Skip to content

Reduce missing checksum log noise#117

Merged
j178 merged 1 commit into
mainfrom
codex/reduce-checksum-log-noise
Mar 30, 2026
Merged

Reduce missing checksum log noise#117
j178 merged 1 commit into
mainfrom
codex/reduce-checksum-log-noise

Conversation

@j178

@j178 j178 commented Mar 30, 2026

Copy link
Copy Markdown
Owner

Closes #116

@j178 j178 added the enhancement New feature or request label Mar 30, 2026
Copilot AI review requested due to automatic review settings March 30, 2026 12:21
@j178 j178 added the enhancement New feature or request label Mar 30, 2026

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: 92641e2851

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

Comment thread src/install.ts
const result = await validateDownloadedChecksum(archivePath, asset, version)
if (result === 'missing') {
core.warning(
core.debug(

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Preserve visibility when checksum verification is skipped

When knownChecksumsByAsset lacks an entry (e.g., for newly published versions), this path installs the binary without any integrity check; changing core.warning to core.debug hides that fact in normal GitHub Actions logs because debug output is off by default. In those cases users now get a “successful” install with no visible indication that verification was bypassed, which weakens supply-chain safety monitoring for CI runs.

Useful? React with 👍 / 👎.

Copilot AI left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Reduces runner log noise in this GitHub Action by downgrading the “missing checksum; skipping verification” message from a warning to a debug-level log, while keeping the behavior (skip verification when no known checksum exists) unchanged.

Changes:

  • Change missing-checksum logging in the installer from warning to debug.
  • Regenerate/commit the bundled output reflecting the same logging change.

Reviewed changes

Copilot reviewed 1 out of 2 changed files in this pull request and generated no comments.

File Description
src/install.ts Downgrades missing-checksum message from warning to debug during download verification.
dist/index.cjs Bundled output updated to match the source logging change.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

@j178 j178 merged commit 380f81e into main Mar 30, 2026
13 checks passed
@j178 j178 deleted the codex/reduce-checksum-log-noise branch March 30, 2026 12:25
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

enhancement New feature or request

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Using action causes github action warnings

2 participants