File tree 2 files changed +17
-9
lines changed
2 files changed +17
-9
lines changed Original file line number Diff line number Diff line change @@ -17,12 +17,12 @@ jobs:
17
17
build :
18
18
runs-on : ubuntu-latest
19
19
steps :
20
- - uses : actions/checkout@v3
21
- - uses : actions/setup-python@v3
20
+ - uses : actions/checkout@v4
21
+ - uses : actions/setup-python@v4
22
22
- name : Build docs
23
23
run : docker run --platform linux/amd64 -v $PWD:/workspace quay.io/antaris-inc/satos-payload-sdk-tools:stable /bin/bash -c "pip install sphinx furo && make docs"
24
24
- name : upload docs artifact
25
- uses : actions/upload-artifact@v3
25
+ uses : actions/upload-artifact@v4
26
26
with :
27
27
name : docs
28
28
path : dist/docs/
@@ -34,12 +34,12 @@ jobs:
34
34
name : docs
35
35
url : ${{ steps.deployment.outputs.page_url }}
36
36
steps :
37
- - uses : actions/download-artifact@v3
37
+ - uses : actions/download-artifact@v4
38
38
with :
39
39
name : docs
40
40
path : docs/
41
- - uses : actions/configure-pages@v3
42
- - uses : actions/upload-pages-artifact@v1
41
+ - uses : actions/configure-pages@v4
42
+ - uses : actions/upload-pages-artifact@v2
43
43
with :
44
44
path : ./docs/
45
45
- id : deployment
Original file line number Diff line number Diff line change 7
7
runs-on : ubuntu-latest
8
8
9
9
steps :
10
- - uses : actions/checkout@v1
11
- - name : Install test dependencies
10
+ - name : Checkout Repository
11
+ uses : actions/checkout@v4
12
+
13
+ - name : Set Up Python 3.10
14
+ uses : actions/setup-python@v4
15
+ with :
16
+ python-version : " 3.10"
17
+
18
+ - name : Install Tox
12
19
run : pip install tox
13
- - name : Run tests
20
+
21
+ - name : Run Tests
14
22
run : tox
15
23
working-directory : lib/python
You can’t perform that action at this time.
0 commit comments