File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -22,19 +22,19 @@ jobs:
22
22
awk -F '\/' '{ print tolower($2) }' |
23
23
tr '_' '-'
24
24
)
25
- - name : Set up Python 3.7
26
- uses : actions/setup-python@v1
25
+ - name : Set up Python 3.x
26
+ uses : actions/setup-python@v4
27
27
with :
28
- python-version : 3.7
28
+ python-version : ' 3.x '
29
29
- name : Versions
30
30
run : |
31
31
python3 --version
32
32
- name : Checkout Current Repo
33
- uses : actions/checkout@v1
33
+ uses : actions/checkout@v3
34
34
with :
35
35
submodules : true
36
36
- name : Checkout tools repo
37
- uses : actions/checkout@v2
37
+ uses : actions/checkout@v3
38
38
with :
39
39
repository : adafruit/actions-ci-circuitpython-libs
40
40
path : actions-ci
Original file line number Diff line number Diff line change @@ -12,14 +12,14 @@ jobs:
12
12
upload-pypi :
13
13
runs-on : ubuntu-latest
14
14
steps :
15
- - uses : actions/checkout@v1
15
+ - uses : actions/checkout@v3
16
16
- name : Check For setup.py
17
17
id : need-pypi
18
18
run : |
19
19
echo ::set-output name=setup-py::$( find . -wholename './setup.py' )
20
20
- name : Set up Python
21
21
if : contains(steps.need-pypi.outputs.setup-py, 'setup.py')
22
- uses : actions/setup-python@v1
22
+ uses : actions/setup-python@v4
23
23
with :
24
24
python-version : ' 3.x'
25
25
- name : Install dependencies
You can’t perform that action at this time.
0 commit comments