File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 50
50
- name : Run sigstore-conformance
51
51
id : sigstore-conformance
52
52
run : |
53
- ${{ github.action_path }}/action.py
53
+ ./sigstore-conformance-env/bin/python ${{ github.action_path }}/action.py
54
54
env :
55
55
GHA_SIGSTORE_CONFORMANCE_ENVIRONMENT : " ${{ inputs.environment }}"
56
56
GHA_SIGSTORE_CONFORMANCE_ENTRYPOINT : " ${{ inputs.entrypoint }}"
Original file line number Diff line number Diff line change @@ -28,4 +28,5 @@ min_vers=$(cut -d '.' -f2 <<< "${vers}")
28
28
29
29
[[ " ${maj_vers} " == " 3" && " ${min_vers} " -ge 7 ]] || die " Bad Python version: ${vers} "
30
30
31
- python -m pip install --requirement " ${GITHUB_ACTION_PATH} /requirements.txt"
31
+ python3 -m venv sigstore-conformance-env
32
+ ./sigstore-conformance-env/bin/python -m pip install --requirement " ${GITHUB_ACTION_PATH} /requirements.txt"
You can’t perform that action at this time.
0 commit comments