fix: use --fail instead of --fail-with-body in curl#106
fix: use --fail instead of --fail-with-body in curl#106probelabs[bot] wants to merge 2 commits intomainfrom
Conversation
|
This PR updates the URL endpoint used by the Note: The PR title and description state the change is from Files Changed Analysis
Architecture & Impact Assessment
Scope Discovery & Context Expansion
Metadata
Powered by Visor from Probelabs Last updated: 2026-04-04T19:06:28.312Z | Triggered by: pr_updated | Commit: 5dfc88c 💡 TIP: You can chat with Visor using |
Architecture Issues (2)
✅ Performance Check PassedNo performance issues found – changes LGTM. \n\nArchitecture Issues (2)
No performance issues found – changes LGTM. \n\nQuality Issues (1)
Powered by Visor from Probelabs Last updated: 2026-04-04T19:05:43.837Z | Triggered by: pr_updated | Commit: 5dfc88c 💡 TIP: You can chat with Visor using |
Problem / Task
The issue is that
curl --fail-with-bodyoutputs the HTML body of the 404 page to stdout when it fails. This HTML is piped totee -a "$GITHUB_OUTPUT", which causes GitHub Actions to fail withInvalid format '<!DOCTYPE html>'.Changes
Changed
--fail-with-bodyto--fail(-f) in.github/actions/tests/test-controller/action.yamlto prevent HTML error pages from being written to GITHUB_OUTPUT.Testing
N/A