File tree 4 files changed +10
-10
lines changed
4 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -15,11 +15,11 @@ jobs:
15
15
GITHUB_CONTEXT : ${{ toJson(github) }}
16
16
run : echo "$GITHUB_CONTEXT"
17
17
- name : Set up Python 3.x (Latest)
18
- uses : actions/setup-python@v4
18
+ uses : actions/setup-python@v5
19
19
with :
20
20
python-version : " 3.x"
21
21
- name : Checkout current repo
22
- uses : actions/checkout@v3
22
+ uses : actions/checkout@v4
23
23
with :
24
24
submodules : true
25
25
- name : Install pre-commit
Original file line number Diff line number Diff line change @@ -35,19 +35,19 @@ runs:
35
35
tr '_' '-'
36
36
) >> $GITHUB_OUTPUT
37
37
- name : Set up Python 3.11
38
- uses : actions/setup-python@v4
38
+ uses : actions/setup-python@v5
39
39
with :
40
40
python-version : ${{ inputs.python-version }}
41
41
- name : Versions
42
42
shell : bash
43
43
run : |
44
44
python3 --version
45
45
- name : Checkout Current Repo
46
- uses : actions/checkout@v3
46
+ uses : actions/checkout@v4
47
47
with :
48
48
submodules : true
49
49
- name : Checkout tools repo
50
- uses : actions/checkout@v3
50
+ uses : actions/checkout@v4
51
51
with :
52
52
repository : adafruit/actions-ci-circuitpython-libs
53
53
path : actions-ci
Original file line number Diff line number Diff line change @@ -41,19 +41,19 @@ runs:
41
41
tr '_' '-'
42
42
) >> $GITHUB_OUTPUT
43
43
- name : Set up requested Python version
44
- uses : actions/setup-python@v4
44
+ uses : actions/setup-python@v5
45
45
with :
46
46
python-version : ${{ inputs.python-version }}
47
47
- name : Versions
48
48
shell : bash
49
49
run : |
50
50
python3 --version
51
51
- name : Checkout Current Repo
52
- uses : actions/checkout@v3
52
+ uses : actions/checkout@v4
53
53
with :
54
54
submodules : true
55
55
- name : Checkout tools repo
56
- uses : actions/checkout@v3
56
+ uses : actions/checkout@v4
57
57
with :
58
58
repository : adafruit/actions-ci-circuitpython-libs
59
59
path : actions-ci
Original file line number Diff line number Diff line change @@ -18,15 +18,15 @@ inputs:
18
18
runs :
19
19
using : " composite"
20
20
steps :
21
- - uses : actions/checkout@v3
21
+ - uses : actions/checkout@v4
22
22
- name : Check For pyproject.toml
23
23
id : need-pypi
24
24
shell : bash
25
25
run : |
26
26
echo pyproject-toml=$( find . -wholename './pyproject.toml' ) >> $GITHUB_OUTPUT
27
27
- name : Set up Python
28
28
if : contains(steps.need-pypi.outputs.pyproject-toml, 'pyproject.toml')
29
- uses : actions/setup-python@v4
29
+ uses : actions/setup-python@v5
30
30
with :
31
31
python-version : ${{ inputs.python-version }}
32
32
- name : Install dependencies
You can’t perform that action at this time.
0 commit comments