Skip to content

Commit

Permalink
Remove thruthy check for setup-java. Fixes #7
Browse files Browse the repository at this point in the history
  • Loading branch information
aalmiray committed Apr 17, 2022
1 parent 7848b6e commit 77fb95c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ runs:
steps:
- name: 'Setup Java'
uses: actions/setup-java@v2
if: ${{ inputs.setup-java }} == 'true' || ${{ inputs.setup-java }} == true
if: ${{ inputs.setup-java }} == 'true'
with:
java-version: 17
distribution: 'zulu'
Expand Down

0 comments on commit 77fb95c

Please sign in to comment.