File tree 4 files changed +9
-9
lines changed
actions/setup_environment
4 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 1
1
name : Setup CI Environment
2
2
inputs :
3
3
python-version :
4
- default : " 3.9 "
4
+ default : " 3.10 "
5
5
type : string
6
6
7
7
runs :
8
8
using : composite
9
9
steps :
10
10
- name : Setup Python
11
- uses : actions/setup-python@v4
11
+ uses : actions/setup-python@v5
12
12
with :
13
13
python-version : ${{ inputs.python-version }}
14
14
Original file line number Diff line number Diff line change 23
23
runs-on : ubuntu-latest
24
24
steps :
25
25
- name : Checkout Repository
26
- uses : actions/checkout@v3
26
+ uses : actions/checkout@v4
27
27
with :
28
28
ref : ${{ inputs.branch }}
29
29
submodules : recursive
36
36
python -m build
37
37
38
38
- name : Upload Wheels to Github
39
- uses : actions/upload-artifact@v3
39
+ uses : actions/upload-artifact@v4
40
40
with :
41
41
name : wheels
42
42
path : dist/*.whl
@@ -49,13 +49,13 @@ jobs:
49
49
upload : ${{ steps.trigger_upload.outputs.value }}
50
50
steps :
51
51
- name : Setup Python
52
- uses : actions/setup-python@v4
52
+ uses : actions/setup-python@v5
53
53
with :
54
- python-version : " 3.9 "
54
+ python-version : " 3.10 "
55
55
56
56
- name : Download Artifacts From Github
57
57
continue-on-error : true
58
- uses : actions/download-artifact@v3
58
+ uses : actions/download-artifact@v4
59
59
with :
60
60
name : wheels
61
61
Original file line number Diff line number Diff line change 12
12
runs-on : ubuntu-latest
13
13
steps :
14
14
- name : Checkout Repository
15
- uses : actions/checkout@v3
15
+ uses : actions/checkout@v4
16
16
with :
17
17
submodules : recursive
18
18
Original file line number Diff line number Diff line change 19
19
- " 3.10"
20
20
steps :
21
21
- name : Checkout Repository
22
- uses : actions/checkout@v3
22
+ uses : actions/checkout@v4
23
23
with :
24
24
submodules : recursive
25
25
You can’t perform that action at this time.
0 commit comments