1 parent 01e36f7 commit 2cf878eCopy full SHA for 2cf878e
1 file changed
.github/workflows/run-tests.yml
@@ -23,13 +23,18 @@ jobs:
23
# Docs: https://docs.github.com/en/actions/using-containerized-services
24
services:
25
elasticsearch:
26
- image: elasticsearch:7.17.3
+ image: docker.elastic.co/elasticsearch/elasticsearch:8.18.0
27
env:
28
discovery.type: single-node
29
+ xpack.security.enabled: 'false'
30
ES_JAVA_OPTS: '-Xms512m -Xmx512m'
31
ports:
32
- 9200:9200
- options: --health-cmd="curl http://localhost:9200/_cluster/health" --health-interval=10s --health-timeout=5s --health-retries=5
33
+ options: >-
34
+ --health-cmd="curl http://localhost:9200/_cluster/health"
35
+ --health-interval=10s
36
+ --health-timeout=5s
37
+ --health-retries=5
38
39
redis:
40
image: redis
0 commit comments