File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 3030 - name : ' Check for jq - Unix-ish'
3131 id : jq-check-unix
3232 if : (runner.os == 'Linux' || runner.os == 'macOS')
33- shell : bash +e {0}
33+ shell : sh +e {0}
3434 # language=sh
3535 run : |
3636 _jq_bin="$(which jq)"
@@ -42,15 +42,15 @@ runs:
4242
4343 - name : ' Install jq - Unix-ish non-1.7'
4444 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')
45- shell : bash
45+ shell : sh
4646 env :
4747 JQ_VERSION : ' ${{ inputs.version }}'
4848 # language=sh
4949 run : ${GITHUB_ACTION_PATH}/scripts/unixish.sh
5050
5151 - name : ' Install jq - Unix-ish 1.7'
5252 if : (runner.os == 'Linux' || runner.os == 'macOS') && inputs.version == '1.7' && (steps.jq-check-unix.outputs.found == 'false' || inputs.force == 'true')
53- shell : bash
53+ shell : sh
5454 env :
5555 JQ_VERSION : ' ${{ inputs.version }}'
5656 # language=sh
You can’t perform that action at this time.
0 commit comments