Skip to content

Commit 253e57c

Browse files
committed
fix(ci): Correct boolean comparison in check-version action
1 parent 3fbb307 commit 253e57c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ runs:
3434
uses: EndBug/version-check@5102328418c0130d66ca712d755c303e93368ce2 # v2.1.7
3535
id: version
3636
with:
37-
static-checking: ${{ inputs.diff-search == false && 'localIsNew' || '' }}
37+
static-checking: ${{ inputs.diff-search != 'true' && 'localIsNew' || '' }}
3838
diff-search: ${{ inputs.diff-search }}
3939
file-url: ${{ inputs.file-url }}
4040
file-name: ${{ inputs.file-name }}

0 commit comments

Comments
 (0)