Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: Philippus/elastic4s
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0c5e6f17588c318c4f3df62ecb3585acf11f9ad9
Choose a base ref
..
head repository: Philippus/elastic4s
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: bc6509a9afaf32f795a272bd59d9a7a10a853974
Choose a head ref
Showing with 2 additions and 2 deletions.
  1. +1 −1 .github/actions/launch-elasticsearch/action.yml
  2. +1 −1 docker-compose.yml
2 changes: 1 addition & 1 deletion .github/actions/launch-elasticsearch/action.yml
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@ runs:
- name: 'Launch elastic docker'
shell: bash
run: |
docker run -d -p 39227:9200 -p 39337:9300 -e "discovery.type=single-node" -v /home/runner/work/elastic4s/elastic4s/elastic4s-tests/src/test/resources/elasticsearch.yml:/usr/share/elasticsearch/config/elasticsearch.yml docker.elastic.co/elasticsearch/elasticsearch:8.17.0
docker run -d -p 39227:9200 -p 39337:9300 -e "discovery.type=single-node" -v /home/runner/work/elastic4s/elastic4s/elastic4s-tests/src/test/resources/elasticsearch.yml:/usr/share/elasticsearch/config/elasticsearch.yml docker.elastic.co/elasticsearch/elasticsearch:8.17.1
- name: 'Wait for cluster to start'
shell: bash
run: |
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:8.17.0
image: docker.elastic.co/elasticsearch/elasticsearch:8.17.1
environment:
discovery.type: single-node
network.host: 0.0.0.0