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 97a706e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,8 @@ jobs:
image:
- "ubuntu-22.04"
- "ubuntu-20.04"
- "windows-2022"
- "windows-2019"
force:
- 'true'
- 'false'
Expand Down
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 97a706e

Please sign in to comment.