What changed, and why it matters
This commit removes a pinned version number from an automated code-style checker used in Ledger's Bitcoin app repository. It only affects how the project runs its internal linting workflow and does not change any application code, cryptographic logic, or user-facing behavior. There is no security relevance.
No security action needed. Optionally review whether the default clang-format version produces acceptable formatting results and pin a newer version if consistency is desired.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The change edits .github/workflows/lint-workflow.yml, dropping the version: 12 parameter from the clang-format-lint GitHub Action. This means the workflow will use the action’s default clang-format version rather than a pinned one. The diff touches no source code, build scripts, tests, or documentation beyond this CI configuration line.
Changed components
.github/workflows/lint-workflow.ymlInspect captured patch +0 / −1
diff --git a/.github/workflows/lint-workflow.yml b/.github/workflows/lint-workflow.yml
index 6cf5ff6..d23f987 100644
--- a/.github/workflows/lint-workflow.yml
+++ b/.github/workflows/lint-workflow.yml
@@ -23,4 +23,3 @@
with:
source: './src'
extensions: 'h,c'
- version: 12
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.