Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
ericsciple committed Feb 27, 2020
1 parent 66c16da commit 7ccce3d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Expand Up @@ -13868,7 +13868,7 @@ function getInputs() {
result.sshKey = core.getInput('ssh-key');
result.sshKnownHosts = core.getInput('ssh-known-hosts');
result.sshStrict =
(core.getInput('ssh-strict') || 'false').toUpperCase() === 'TRUE';
(core.getInput('ssh-strict') || 'true').toUpperCase() === 'TRUE';
// Persist credentials
result.persistCredentials =
(core.getInput('persist-credentials') || 'false').toUpperCase() === 'TRUE';
Expand Down
2 changes: 1 addition & 1 deletion src/input-helper.ts
Expand Up @@ -110,7 +110,7 @@ export function getInputs(): IGitSourceSettings {
result.sshKey = core.getInput('ssh-key')
result.sshKnownHosts = core.getInput('ssh-known-hosts')
result.sshStrict =
(core.getInput('ssh-strict') || 'false').toUpperCase() === 'TRUE'
(core.getInput('ssh-strict') || 'true').toUpperCase() === 'TRUE'

// Persist credentials
result.persistCredentials =
Expand Down

0 comments on commit 7ccce3d

Please sign in to comment.