File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change 1414 python-version :
1515 description : ' Specify Python version to use'
1616 required : false
17- default : ' 3.10'
1817 run-eol-python-version :
1918 description : ' Run EOL python version?'
2019 required : false
2827 - main
2928 - dev
3029
30+ env :
31+ DEFAULT_PYTHON_VERSION : " 3.9"
32+ EOL_PYTHON_VERSION : " 3.8"
33+ EXIT_STATUS : 0
34+
3135jobs :
3236 integration-tests :
3337 runs-on : ubuntu-latest
34- env :
35- EXIT_STATUS : 0
3638 steps :
3739 - name : Clone Repository with SHA
3840 if : ${{ inputs.sha != '' }}
5254 - name : Setup Python
5355 uses : actions/setup-python@v5
5456 with :
55- python-version : ${{ inputs.run-eol-python-version == 'true' && '3.9' || inputs.python-version }}
57+ python-version : ${{ inputs.run-eol-python-version == 'true' && env.EOL_PYTHON_VERSION || inputs.python-version || env.DEFAULT_PYTHON_VERSION }}
5658
5759 - name : Install Python deps
5860 run : pip install -U setuptools wheel boto3 certifi
You can’t perform that action at this time.
0 commit comments