File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 12
12
runs-on : [ubuntu-22.04]
13
13
steps :
14
14
- name : Checkout
15
- uses : actions/checkout@v3
15
+ uses : actions/checkout@v4
16
16
- name : Set up
17
17
run : docker pull python:3.8
18
18
- name : Lint
@@ -23,13 +23,13 @@ jobs:
23
23
needs : [lint]
24
24
steps :
25
25
- name : Checkout
26
- uses : actions/checkout@v3
26
+ uses : actions/checkout@v4
27
27
- name : Set up
28
28
run : pip install -r requirements.txt
29
29
- name : Build
30
30
run : python setup.py sdist bdist_wheel
31
31
- name : Upload artifact
32
- uses : actions/upload-artifact@v3
32
+ uses : actions/upload-artifact@v4
33
33
with :
34
34
name : python-build
35
35
path : |
@@ -43,11 +43,11 @@ jobs:
43
43
needs : [build]
44
44
steps :
45
45
- name : Checkout
46
- uses : actions/checkout@v3
46
+ uses : actions/checkout@v4
47
47
- name : Set up
48
48
run : pip install -r requirements.txt
49
49
- name : Download build
50
- uses : actions/download-artifact@v3
50
+ uses : actions/download-artifact@v4
51
51
with :
52
52
name : python-build
53
53
- name : Test installation
You can’t perform that action at this time.
0 commit comments