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 @@ -19,18 +19,18 @@ jobs:
19
19
tr '_' '-'
20
20
)
21
21
- name : Set up Python 3.7
22
- uses : actions/setup-python@v1
22
+ uses : actions/setup-python@v4
23
23
with :
24
24
python-version : 3.7
25
25
- name : Versions
26
26
run : |
27
27
python3 --version
28
28
- name : Checkout Current Repo
29
- uses : actions/checkout@v1
29
+ uses : actions/checkout@v3
30
30
with :
31
31
submodules : true
32
32
- name : Checkout tools repo
33
- uses : actions/checkout@v2
33
+ uses : actions/checkout@v3
34
34
with :
35
35
repository : adafruit/actions-ci-circuitpython-libs
36
36
path : actions-ci
Original file line number Diff line number Diff line change @@ -12,20 +12,20 @@ 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 pyproject.toml
17
17
id : need-pypi
18
18
run : |
19
19
echo pyproject-toml=$( find . -wholename './pyproject.toml' ) >> $GITHUB_OUTPUT
20
20
- name : Set up Python
21
21
if : contains(steps.need-pypi.outputs.pyproject-toml, 'pyproject.toml')
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
26
- if : contains(steps.need-pypi.outputs.pyproject. toml, 'pyproject.toml')
26
+ if : contains(steps.need-pypi.outputs.pyproject- toml, 'pyproject.toml')
27
27
run : |
28
- python -m pip install --upgrade pip build
28
+ python -m pip install --upgrade pip
29
29
pip install --upgrade build twine
30
30
- name : Build and publish
31
31
if : contains(steps.need-pypi.outputs.pyproject-toml, 'pyproject.toml')
You can’t perform that action at this time.
0 commit comments