← Watch feed
ci: Disable Docker build summary generation
What changed, and why it matters
This commit changes a GitHub Actions CI setting to stop Docker from printing extra build summary messages. It is a cosmetic/workflow cleanup change with no security relevance.
Recommended action
No security action needed; routine CI maintenance.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The patch adds DOCKER_BUILD_SUMMARY: false to .github/workflows/ci.yml, disabling the Docker build-push-action’s generated build summary output. This only affects CI log verbosity and has no impact on code, cryptography, build artifacts, or secrets.
Changed components
.github/workflows/ci.ymlInspect captured patch +3 / −0
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 308035c..432bb89 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -47,6 +47,9 @@ env:
SYMBOL_CHECK: 'yes'
# Compile and run the examples.
EXAMPLES: 'yes'
+ # Disable Docker build summary generation.
+ # See https://github.com/docker/build-push-action/blob/master/README.md#environment-variables.
+ DOCKER_BUILD_SUMMARY: false
jobs:
docker_cache:
Risk score
Our methodology →Why this scored 15/100
Human-validated context
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
No validated notes yet.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.