diff --git a/dist/index.js b/dist/index.js index b5cb48b..26c60bf 100644 --- a/dist/index.js +++ b/dist/index.js @@ -136666,8 +136666,8 @@ function parseInputs() { releaseType: getOptionalInput('release-type'), path: getOptionalInput('path'), repoUrl: core.getInput('repo-url') || process.env.GITHUB_REPOSITORY || '', - gitUsername: core.getInput('git-username'), - gitPassword: core.getInput('git-password'), + gitUsername: core.getInput('git-username', { required: true }), + gitPassword: core.getInput('git-password', { required: true }), targetBranch: getOptionalInput('target-branch'), configFile: core.getInput('config-file') || DEFAULT_CONFIG_FILE, manifestFile: core.getInput('manifest-file') || DEFAULT_MANIFEST_FILE,