Update elasticsearch-rest-client, ... to 8.19.7 in series/8.x #1776
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: pr | |
| on: | |
| pull_request: | |
| paths-ignore: | |
| - 'doc/**' | |
| - 'docs/**' | |
| - '*.md' | |
| jobs: | |
| scala-2_12: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: checkout the repo | |
| uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up JDK | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: temurin | |
| java-version: 11 | |
| - name: set up sbt | |
| uses: sbt/setup-sbt@v1 | |
| - name: Launch elastic docker | |
| uses: ./.github/actions/launch-elasticsearch | |
| - name: run tests | |
| timeout-minutes: 30 | |
| run: sbt ++2.12.20 test | |
| scala-2_13: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: checkout the repo | |
| uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up JDK | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: temurin | |
| java-version: 11 | |
| - name: set up sbt | |
| uses: sbt/setup-sbt@v1 | |
| - name: Launch elastic docker | |
| uses: ./.github/actions/launch-elasticsearch | |
| - name: run tests | |
| timeout-minutes: 30 | |
| run: sbt ++2.13.17 test | |
| scala-3: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: checkout the repo | |
| uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up JDK | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: temurin | |
| java-version: 11 | |
| - name: set up sbt | |
| uses: sbt/setup-sbt@v1 | |
| - name: Launch elastic docker | |
| uses: ./.github/actions/launch-elasticsearch | |
| - name: run tests | |
| run: sbt ++3.3.7 elastic4s-scala3/test |