fix: update log message for golangci-lint execution

This commit is contained in:
b1gb4by 2025-10-30 19:33:48 +09:00
parent 14973f18c8
commit 303eabf9c2
No known key found for this signature in database
3 changed files with 3555 additions and 3555 deletions

2
dist/post_run/index.js generated vendored
View file

@ -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
View file

@ -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 });

View file

@ -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> {