From f6b58bacfeb1d7bec7a47293e3d2b805acf85d4e Mon Sep 17 00:00:00 2001 From: Daniel Carbone Date: Thu, 14 Sep 2023 17:12:59 -0500 Subject: [PATCH] its late. --- action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yaml b/action.yaml index 80632b7..4f93802 100644 --- a/action.yaml +++ b/action.yaml @@ -41,7 +41,7 @@ runs: fi - name: 'Install jq - Unix-ish non-1.7' - if: (runner.os == 'Linux' || runner.os == 'macOS') && (inputs.version == '1.5' || inputs.version == '1.6') (steps.jq-check-unix.outputs.found == 'false' || inputs.force == 'true') + if: (runner.os == 'Linux' || runner.os == 'macOS') && (inputs.version == '1.5' || inputs.version == '1.6') && (steps.jq-check-unix.outputs.found == 'false' || inputs.force == 'true') shell: bash env: JQ_VERSION: '${{ inputs.version }}' @@ -49,7 +49,7 @@ runs: run: ${{ github.action_path }}/scripts/unixish.sh - name: 'Install jq - Unix-ish 1.7' - if: (runner.os == 'Linux' || runner.os == 'macOS') && inputs.version == '1.7' (steps.jq-check-unix.outputs.found == 'false' || inputs.force == 'true') + if: (runner.os == 'Linux' || runner.os == 'macOS') && inputs.version == '1.7' && (steps.jq-check-unix.outputs.found == 'false' || inputs.force == 'true') shell: bash env: JQ_VERSION: '${{ inputs.version }}'