Skip to content

Commit 52fa85b

Browse files
committed
actions/check-cc: fix variable usage
1 parent 471a6f8 commit 52fa85b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/actions/check-cc/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ runs:
2222
2323
$version = '${{ inputs.version }}'
2424
if ($version) {
25-
$($output | Select-String -Pattern "$script:version." -SimpleMatch -Quiet) -or $(throw "Unexpected `$Exe --version` output")
25+
$($output | Select-String -Pattern "$version." -SimpleMatch -Quiet) -or $(throw "Unexpected `$Exe --version` output")
2626
}
2727
}
2828

0 commit comments

Comments
 (0)