We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ace1a7 commit fc42988Copy full SHA for fc42988
1 file changed
action.yml
@@ -72,10 +72,10 @@ runs:
72
INPUTS_REQUIREMENTS: ${{ inputs.requirements }}
73
shell: bash
74
run: |
75
- pip install -r ${GITHUB_ACTION_PATH}/requirements.txt
+ pip install --upgrade -r ${GITHUB_ACTION_PATH}/requirements.txt
76
if [ -n "${INPUTS_REQUIREMENTS}" ]; then
77
echo "${INPUTS_REQUIREMENTS}" > "${RUNNER_TEMP}/requirements.txt"
78
- pip install -r "${RUNNER_TEMP}/requirements.txt"
+ pip install --upgrade -r "${RUNNER_TEMP}/requirements.txt"
79
fi
80
- name: kamidana
81
0 commit comments