Skip to content

Commit

Permalink
Update github actions path to fix container compat
Browse files Browse the repository at this point in the history
  • Loading branch information
TaxBusby committed Nov 7, 2023
1 parent d10cd46 commit a039cbb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,15 +46,15 @@ runs:
env:
JQ_VERSION: '${{ inputs.version }}'
# language=sh
run: ${{ github.action_path }}/scripts/unixish.sh
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')
shell: bash
env:
JQ_VERSION: '${{ inputs.version }}'
# language=sh
run: ${{ github.action_path }}/scripts/unixish-17.sh
run: ${GITHUB_ACTION_PATH}/scripts/unixish-17.sh

- name: 'Check for jq - Windows-ish'
id: jq-check-windows
Expand Down

0 comments on commit a039cbb

Please sign in to comment.