8
8
runs-on : ubuntu-latest
9
9
steps :
10
10
- name : Checkout Repository
11
- uses : actions/checkout@v3
11
+ uses : actions/checkout@v2
12
12
- name : Set up Python
13
- uses : actions/setup-python@v3
13
+ uses : actions/setup-python@v4
14
14
with :
15
- python-version : " 3.10 "
15
+ python-version : " 3.11 "
16
16
- name : Install dependencies
17
17
run : |
18
18
python3 -m pip install setuptools wheel twine
@@ -28,11 +28,11 @@ jobs:
28
28
runs-on : ubuntu-latest
29
29
steps :
30
30
- name : Checkout Repository
31
- uses : actions/checkout@v3
31
+ uses : actions/checkout@v2
32
32
- name : Set up Python
33
- uses : actions/setup-python@v3
33
+ uses : actions/setup-python@v4
34
34
with :
35
- python-version : " 3.10 "
35
+ python-version : " 3.11 "
36
36
- name : Install dependencies
37
37
run : |
38
38
python3 -m pip install nox
@@ -43,11 +43,11 @@ jobs:
43
43
runs-on : ubuntu-latest
44
44
steps :
45
45
- name : Checkout Repository
46
- uses : actions/checkout@v3
46
+ uses : actions/checkout@v2
47
47
- name : Set up Python
48
- uses : actions/setup-python@v3
48
+ uses : actions/setup-python@v4
49
49
with :
50
- python-version : " 3.10 "
50
+ python-version : " 3.11 "
51
51
- name : Install dependencies
52
52
run : |
53
53
python3 -m pip install nox
@@ -66,24 +66,25 @@ jobs:
66
66
" 3.8" ,
67
67
" 3.9" ,
68
68
" 3.10" ,
69
+ " 3.11" ,
69
70
]
70
71
es-version : [7.0.0, 7.10.0]
71
72
72
73
steps :
73
74
- name : Checkout Repository
74
- uses : actions/checkout@v3
75
+ uses : actions/checkout@v2
75
76
- name : Setup Elasticsearch
76
77
run : |
77
78
mkdir /tmp/elasticsearch
78
79
wget -O - https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-${{ matrix.es-version }}-linux-x86_64.tar.gz | tar xz --directory=/tmp/elasticsearch --strip-components=1
79
80
/tmp/elasticsearch/bin/elasticsearch -d
80
81
- name : Setup Python - ${{ matrix.python-version }}
81
- uses : actions/setup-python@v3
82
+ uses : actions/setup-python@v4
82
83
with :
83
84
python-version : ${{ matrix.python-version }}
84
85
- name : Set up Python for Nox
85
- if : matrix.python-version != '3.10 '
86
- uses : actions/setup-python@v3
86
+ if : matrix.python-version != '3.11 '
87
+ uses : actions/setup-python@v4
87
88
with :
88
89
python-version : 3
89
90
- name : Install dependencies
0 commit comments