We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03420b6 commit bb53549Copy full SHA for bb53549
pkg/config/output.go
@@ -18,7 +18,7 @@ const (
18
OutFormatHTML = "html"
19
OutFormatJunitXML = "junit-xml"
20
OutFormatJunitXMLExtended = "junit-xml-extended"
21
- OutFormatGithubActions = "github-actions" // Deprecated
+ OutFormatGithubActions = "github-actions" // Deprecated: use OutFormatColoredLineNumber instead.
22
OutFormatTeamCity = "teamcity"
23
OutFormatSarif = "sarif"
24
)
pkg/printers/githubaction.go
@@ -15,7 +15,8 @@ type GitHubAction struct {
15
}
16
17
// NewGitHubAction output format outputs issues according to GitHub Action.
-// Deprecated
+//
+// Deprecated: use NewText instead.
func NewGitHubAction(w io.Writer) *GitHubAction {
return &GitHubAction{w: w}
0 commit comments