3
3
pre-commit :
4
4
runs-on : ubuntu-latest
5
5
steps :
6
- - name : Checkout repository
7
- uses : actions/checkout@v3
8
- - name : Setup python 3.10
9
- uses : actions/setup-python@v4
6
+ - uses : actions/checkout@v4
7
+ - uses : actions/setup-python@v5
10
8
with :
11
- python-version : 3.10
9
+ python-version : ' 3.10'
12
10
- name : Install pre-commit
13
11
run : pip install pre-commit
14
12
- name : Run pre-commit
@@ -40,12 +38,10 @@ jobs:
40
38
name : Build and publish docs
41
39
runs-on : ubuntu-latest
42
40
steps :
43
- - name : Checkout repository
44
- uses : actions/checkout@v3
45
- - name : Setup python 3.10
46
- uses : actions/setup-python@v4
41
+ - uses : actions/checkout@v4
42
+ - uses : actions/setup-python@v5
47
43
with :
48
- python-version : 3.10
44
+ python-version : ' 3.10'
49
45
- name : Install virtualenv
50
46
run : pip install virtualenv
51
47
- name : Build docs
@@ -66,12 +62,10 @@ jobs:
66
62
test :
67
63
runs-on : ubuntu-latest
68
64
steps :
69
- - name : Checkout repository
70
- uses : actions/checkout@v3
71
- - name : Setup python 3.10
72
- uses : actions/setup-python@v4
65
+ - uses : actions/checkout@v4
66
+ - uses : actions/setup-python@v5
73
67
with :
74
- python-version : 3.10
68
+ python-version : ' 3.10'
75
69
- name : Install apt dependencies
76
70
run : sudo apt-get update -y && sudo apt-get install -y python3-dev openssl libssl-dev gcc pkg-config libffi-dev libxml2-dev libxmlsec1-dev
77
71
- name : Install dependencies
0 commit comments