mirror of
https://github.com/golangci/golangci-lint-action.git
synced 2026-07-18 21:38:01 +00:00
Fix problems parsing
This commit is contained in:
Vendored
+1
-1
@@ -5733,7 +5733,7 @@ function runLint(lintPath) {
|
||||
if (args.includes(`-out-format`)) {
|
||||
throw new Error(`please, don't change out-format for golangci-lint: it can be broken in a future`);
|
||||
}
|
||||
const cmd = `${lintPath} run ${args}`.trimRight();
|
||||
const cmd = `${lintPath} run --out-format=github-actions ${args}`.trimRight();
|
||||
core.info(`Running [${cmd}] ...`);
|
||||
const startedAt = Date.now();
|
||||
try {
|
||||
|
||||
Reference in New Issue
Block a user