Skip to content

Commit

Permalink
Fix action path inside a container
Browse files Browse the repository at this point in the history
For reference: actions/runner#716
  • Loading branch information
cantunca-pointr committed Jan 17, 2024
1 parent 47c987b commit 732ada6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,12 @@ runs:
python-version: '3.10'
- name: Install Python dependencies
shell: bash
run: pip install -r ${{ github.action_path }}/requirements.txt
run: pip install -r ${GITHUB_ACTION_PATH}/requirements.txt
- name: Run clang-tidy review
id: run-review
shell: bash
run: >-
${{ github.action_path }}/review.py
${GITHUB_ACTION_PATH}/review.py
--repo=${{ inputs.repo }}
--pr=${{ inputs.pr }}
--token=${{ inputs.token }}
Expand Down

0 comments on commit 732ada6

Please sign in to comment.