Skip to content

Bump co.elastic.clients:elasticsearch-java from 8.15.1 to 8.15.2 #135

Bump co.elastic.clients:elasticsearch-java from 8.15.1 to 8.15.2

Bump co.elastic.clients:elasticsearch-java from 8.15.1 to 8.15.2 #135

Workflow file for this run

name: Build
on: push
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: '17'
- uses: actions/cache@v2
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- run: mvn -version
- run: ./mvnw -U test -Dgithub_token=${{ secrets.GH_TOKEN_REPO }} -Dserver_start_timeout=15 -DfailIfNoTests
- uses: codecov/codecov-action@v1