mirror of
https://gitea.com/actions/checkout.git
synced 2024-11-12 19:55:57 +01:00
output stderr
This commit is contained in:
parent
9b382aeccb
commit
687da9f3dc
3 changed files with 14 additions and 28 deletions
20
dist/index.js
vendored
20
dist/index.js
vendored
|
@ -356,9 +356,6 @@ class GitAuthHelper {
|
|||
if (!configPath && !globalConfig) {
|
||||
configPath = path.join(this.git.getWorkingDirectory(), '.git', 'config');
|
||||
}
|
||||
// Configure a placeholder value. This approach avoids the credential being captured
|
||||
// by process creation audit events, which are commonly logged. For more information,
|
||||
// refer to https://docs.microsoft.com/en-us/windows-server/identity/ad-ds/manage/component-updates/command-line-process-auditing
|
||||
yield this.git.config(this.tokenConfigKey, `"store --file ${this.credentialStorePath}"`, globalConfig);
|
||||
});
|
||||
}
|
||||
|
@ -874,24 +871,20 @@ class GitCommandManager {
|
|||
for (const key of Object.keys(this.gitEnv)) {
|
||||
env[key] = this.gitEnv[key];
|
||||
}
|
||||
const defaultListener = {
|
||||
stdout: (data) => {
|
||||
stdout.push(data.toString());
|
||||
}
|
||||
};
|
||||
const mergedListeners = Object.assign(Object.assign({}, defaultListener), customListeners);
|
||||
const stdout = [];
|
||||
const options = {
|
||||
cwd: this.workingDirectory,
|
||||
env,
|
||||
silent,
|
||||
ignoreReturnCode: allowAllExitCodes,
|
||||
listeners: mergedListeners
|
||||
listeners: customListeners
|
||||
};
|
||||
result.exitCode = yield exec.exec(`"${this.gitPath}"`, args, options);
|
||||
result.stdout = stdout.join('');
|
||||
let execOutput = yield exec.getExecOutput(`"${this.gitPath}"`, args, options);
|
||||
result.exitCode = execOutput.exitCode;
|
||||
result.stdout = execOutput.stdout;
|
||||
result.stderr = execOutput.stderr;
|
||||
core.debug(result.exitCode.toString());
|
||||
core.debug(result.stdout);
|
||||
core.debug(result.stderr);
|
||||
return result;
|
||||
});
|
||||
}
|
||||
|
@ -963,6 +956,7 @@ class GitCommandManager {
|
|||
class GitOutput {
|
||||
constructor() {
|
||||
this.stdout = '';
|
||||
this.stderr = '';
|
||||
this.exitCode = 0;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -276,9 +276,6 @@ class GitAuthHelper {
|
|||
configPath = path.join(this.git.getWorkingDirectory(), '.git', 'config')
|
||||
}
|
||||
|
||||
// Configure a placeholder value. This approach avoids the credential being captured
|
||||
// by process creation audit events, which are commonly logged. For more information,
|
||||
// refer to https://docs.microsoft.com/en-us/windows-server/identity/ad-ds/manage/component-updates/command-line-process-auditing
|
||||
await this.git.config(
|
||||
this.tokenConfigKey,
|
||||
`"store --file ${this.credentialStorePath}"`,
|
||||
|
|
|
@ -522,28 +522,22 @@ class GitCommandManager {
|
|||
env[key] = this.gitEnv[key]
|
||||
}
|
||||
|
||||
const defaultListener = {
|
||||
stdout: (data: Buffer) => {
|
||||
stdout.push(data.toString())
|
||||
}
|
||||
}
|
||||
|
||||
const mergedListeners = {...defaultListener, ...customListeners}
|
||||
|
||||
const stdout: string[] = []
|
||||
const options = {
|
||||
cwd: this.workingDirectory,
|
||||
env,
|
||||
silent,
|
||||
ignoreReturnCode: allowAllExitCodes,
|
||||
listeners: mergedListeners
|
||||
listeners: customListeners
|
||||
}
|
||||
|
||||
result.exitCode = await exec.exec(`"${this.gitPath}"`, args, options)
|
||||
result.stdout = stdout.join('')
|
||||
let execOutput = await exec.getExecOutput(`"${this.gitPath}"`, args, options)
|
||||
result.exitCode = execOutput.exitCode
|
||||
result.stdout = execOutput.stdout
|
||||
result.stderr = execOutput.stderr
|
||||
|
||||
core.debug(result.exitCode.toString())
|
||||
core.debug(result.stdout)
|
||||
core.debug(result.stderr)
|
||||
|
||||
return result
|
||||
}
|
||||
|
@ -631,5 +625,6 @@ class GitCommandManager {
|
|||
|
||||
class GitOutput {
|
||||
stdout = ''
|
||||
stderr = ''
|
||||
exitCode = 0
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue