Skip to content

Commit a94c665

Browse files
committed
20220103B
1 parent b6a5a0a commit a94c665

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

hugoalh.GitHubActionsToolkit/hugoalh.GitHubActionsToolkit.psm1

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -305,10 +305,10 @@ Whether the input is require. If required and not present, will throw an error.
305305
.PARAMETER Trim
306306
Trim the input's value.
307307
.OUTPUTS
308-
Hashtable | Null | String
308+
Hashtable | String
309309
#>
310310
function Get-GHActionsInput {
311-
[CmdletBinding()][OutputType([hashtable], [null], [string])]
311+
[CmdletBinding()][OutputType([hashtable], [string])]
312312
param(
313313
[Parameter(Mandatory = $true, Position = 0, ValueFromPipeline = $true)][string[]]$Name,
314314
[switch]$Require,
@@ -367,10 +367,10 @@ Name of the state.
367367
.PARAMETER Trim
368368
Trim the state's value.
369369
.OUTPUTS
370-
Hashtable | Null | String
370+
Hashtable | String
371371
#>
372372
function Get-GHActionsState {
373-
[CmdletBinding()][OutputType([hashtable], [null], [string])]
373+
[CmdletBinding()][OutputType([hashtable], [string])]
374374
param(
375375
[Parameter(Mandatory = $true, Position = 0, ValueFromPipeline = $true)][string[]]$Name,
376376
[switch]$Trim

0 commit comments

Comments
 (0)