We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d2cb281 + d3eac9c commit 2504e2bCopy full SHA for 2504e2b
action.yml
@@ -42,7 +42,9 @@ runs:
42
sudo ln -sf ~/.tfenv/bin/* /usr/local/bin
43
shell: bash
44
45
- - run: pip install jinja2
+ - run: |
46
+ python -m venv venv
47
+ venv/bin/pip install jinja2
48
49
50
- id: check
@@ -68,7 +70,7 @@ runs:
68
70
tfenv install "${versions[$i]}"
69
71
tfenv use "${versions[$i]}"
72
- python3 ${{ github.action_path }}/tfcheck.py "${directories[$i]}" -report report.md $hide | tee >(tail -1 >> result.txt)
73
+ venv/bin/python ${{ github.action_path }}/tfcheck.py "${directories[$i]}" -report report.md $hide | tee >(tail -1 >> result.txt)
74
ret=${PIPESTATUS[0]}
75
76
if [ "$ret" -eq 1 ]; then
0 commit comments