Skip to content

Commit 5cdb3b3

Browse files
rahulbhivareRahul Bhivare
and
Rahul Bhivare
authored
Updating workflow (#68)
* updated python * updated docs * updated docs --------- Co-authored-by: Rahul Bhivare <[email protected]>
1 parent dea29a6 commit 5cdb3b3

File tree

2 files changed

+17
-9
lines changed

2 files changed

+17
-9
lines changed

.github/workflows/docs.yaml

+6-6
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ jobs:
1717
build:
1818
runs-on: ubuntu-latest
1919
steps:
20-
- uses: actions/checkout@v3
21-
- uses: actions/setup-python@v3
20+
- uses: actions/checkout@v4
21+
- uses: actions/setup-python@v4
2222
- name: Build docs
2323
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"
2424
- name: upload docs artifact
25-
uses: actions/upload-artifact@v3
25+
uses: actions/upload-artifact@v4
2626
with:
2727
name: docs
2828
path: dist/docs/
@@ -34,12 +34,12 @@ jobs:
3434
name: docs
3535
url: ${{ steps.deployment.outputs.page_url }}
3636
steps:
37-
- uses: actions/download-artifact@v3
37+
- uses: actions/download-artifact@v4
3838
with:
3939
name: docs
4040
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
4343
with:
4444
path: ./docs/
4545
- id: deployment

.github/workflows/python.yaml

+11-3
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,17 @@ jobs:
77
runs-on: ubuntu-latest
88

99
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
1219
run: pip install tox
13-
- name: Run tests
20+
21+
- name: Run Tests
1422
run: tox
1523
working-directory: lib/python

0 commit comments

Comments
 (0)