File tree 1 file changed +3
-2
lines changed
1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 14
14
python-version :
15
15
description : ' Specify Python version to use'
16
16
required : false
17
- default : ' 3.10'
18
17
run-eol-python-version :
19
18
description : ' Run EOL python version?'
20
19
required : false
32
31
integration-tests :
33
32
runs-on : ubuntu-latest
34
33
env :
34
+ DEFAULT_PYTHON_VERSION : " 3.10"
35
+ EOL_PYTHON_VERSION : " 3.9"
35
36
EXIT_STATUS : 0
36
37
steps :
37
38
- name : Clone Repository with SHA
52
53
- name : Setup Python
53
54
uses : actions/setup-python@v5
54
55
with :
55
- python-version : ${{ inputs.run-eol-python-version == 'true' && '3.9' || inputs.python-version }}
56
+ python-version : ${{ inputs.run-eol-python-version == 'true' && env.EOL_PYTHON_VERSION || inputs.python-version || env.DEFAULT_PYTHON_VERSION }}
56
57
57
58
- name : Install Python deps
58
59
run : pip install -U setuptools wheel boto3 certifi
You can’t perform that action at this time.
0 commit comments