Skip to content

Commit 2443a24

Browse files
authored
Clarify actionlint includes shellcheck and pyflakes in CLI output (#7656)
1 parent 439f25f commit 2443a24

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/src/content/docs/introduction/architecture.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@ flowchart TB
311311
end
312312
313313
subgraph Scanners["Security Scanners"]
314-
ACTIONLINT["actionlint<br/>Workflow linting<br/>Shell script checks"]
314+
ACTIONLINT["actionlint<br/>Workflow linting<br/>(includes shellcheck & pyflakes)"]
315315
ZIZMOR["zizmor<br/>Security vulnerabilities<br/>Privilege escalation"]
316316
POUTINE["poutine<br/>Supply chain risks<br/>Third-party actions"]
317317
end

pkg/cli/actionlint.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ func runActionlintOnFile(lockFile string, verbose bool, strict bool) error {
105105
)
106106

107107
// Always show that actionlint is running (regular verbosity)
108-
fmt.Fprintf(os.Stderr, "%s\n", console.FormatInfoMessage(fmt.Sprintf("Running actionlint on %s", relPath)))
108+
fmt.Fprintf(os.Stderr, "%s\n", console.FormatInfoMessage(fmt.Sprintf("Running actionlint (includes shellcheck & pyflakes) on %s", relPath)))
109109

110110
// In verbose mode, also show the command that users can run directly
111111
if verbose {

0 commit comments

Comments
 (0)