Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
little rename for nuance
  • Loading branch information
Greta Parks authored and Greta Parks committed May 12, 2023
1 parent ccca7e9 commit 21b085a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src/internal/deployment.js
Expand Up @@ -54,8 +54,8 @@ class Deployment {
)
}

const TIMEOUT_INPUT = Number(core.getInput('timeout'))
this.timeout = !TIMEOUT_INPUT || TIMEOUT_INPUT <= 0 ? MAX_TIMEOUT : Math.min(TIMEOUT_INPUT, MAX_TIMEOUT)
const timeoutInput = Number(core.getInput('timeout'))
this.timeout = !timeoutInput || timeoutInput <= 0 ? MAX_TIMEOUT : Math.min(timeoutInput, MAX_TIMEOUT)

try {
core.debug(`Actor: ${this.buildActor}`)
Expand Down

0 comments on commit 21b085a

Please sign in to comment.