Skip to content

Commit

Permalink
Try actions/runner#716 as a workaround to allow action to be run on c…
Browse files Browse the repository at this point in the history
…ustom containers
  • Loading branch information
francesco-ballarin committed Jan 2, 2022
1 parent 017dcae commit ef66652
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 @@ -16,9 +16,9 @@ runs:
steps:
- name: Install dependencies
run: |
pip3 -q install -r ${{ github.action_path }}/scripts/requirements.txt
pip3 -q install -r ${GITHUB_ACTION_PATH}/scripts/requirements.txt
shell: bash
- name: Check for stray outputs, counts and metadata in ipynb files
run: |
python3 ${{ github.action_path }}/scripts/check_metadata.py "${{ inputs.pattern }}" "${{ inputs.expect-failure }}"
python3 ${GITHUB_ACTION_PATH}/scripts/check_metadata.py "${{ inputs.pattern }}" "${{ inputs.expect-failure }}"
shell: bash

0 comments on commit ef66652

Please sign in to comment.