mirror of
https://github.com/golangci/golangci-lint-action.git
synced 2025-12-12 22:11:15 +00:00
fix: update log message for golangci-lint execution
This commit is contained in:
parent
14973f18c8
commit
303eabf9c2
3 changed files with 3555 additions and 3555 deletions
2
dist/post_run/index.js
generated
vendored
2
dist/post_run/index.js
generated
vendored
|
|
@ -94243,7 +94243,7 @@ async function runLint(binPath, patchPath) {
|
|||
core.setFailed(`golangci-lint exit with code ${exc.code}`);
|
||||
}
|
||||
}
|
||||
core.info(`Ran golangci-lint in ${Date.now() - startedAt}ms`);
|
||||
core.info(`Run golangci-lint in ${Date.now() - startedAt}ms`);
|
||||
}
|
||||
async function runVerify(binPath, userArgsMap, cmdArgs) {
|
||||
const verify = core.getBooleanInput(`verify`, { required: true });
|
||||
|
|
|
|||
2
dist/run/index.js
generated
vendored
2
dist/run/index.js
generated
vendored
|
|
@ -94243,7 +94243,7 @@ async function runLint(binPath, patchPath) {
|
|||
core.setFailed(`golangci-lint exit with code ${exc.code}`);
|
||||
}
|
||||
}
|
||||
core.info(`Ran golangci-lint in ${Date.now() - startedAt}ms`);
|
||||
core.info(`Run golangci-lint in ${Date.now() - startedAt}ms`);
|
||||
}
|
||||
async function runVerify(binPath, userArgsMap, cmdArgs) {
|
||||
const verify = core.getBooleanInput(`verify`, { required: true });
|
||||
|
|
|
|||
|
|
@ -153,7 +153,7 @@ async function runLint(binPath: string, patchPath: string): Promise<void> {
|
|||
}
|
||||
}
|
||||
|
||||
core.info(`Ran golangci-lint in ${Date.now() - startedAt}ms`)
|
||||
core.info(`Run golangci-lint in ${Date.now() - startedAt}ms`)
|
||||
}
|
||||
|
||||
async function runVerify(binPath: string, userArgsMap: Map<string, string>, cmdArgs: ExecOptionsWithStringEncoding): Promise<void> {
|
||||
|
|
|
|||
Loading…
Reference in a new issue