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 bfc6624 commit d5aaa12
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 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 All @@ -76,11 +76,11 @@ runs:
shell: powershell
env:
JQ_VERSION: '${{ inputs.version }}'
run: ${{ github.action_path }}\scripts\windowsish.ps1
run: ${GITHUB_ACTION_PATH}\scripts\windowsish.ps1

- name: 'Install jq - Windows-ish 1.7'
if: runner.os == 'Windows' && inputs.version == '1.7' && (steps.jq-check-windows.outputs.found == 'false' || inputs.force == 'true')
shell: powershell
env:
JQ_VERSION: '${{ inputs.version }}'
run: ${{ github.action_path }}\scripts\windowsish-17.ps1
run: ${GITHUB_ACTION_PATH}\scripts\windowsish-17.ps1

0 comments on commit d5aaa12

Please sign in to comment.