Update dependencies CVE #38
Workflow file for this run
This file contains 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: "Continuous Integration" | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
latest-jaeger: | |
name: Latest Jaeger | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-java@v2 | |
with: | |
distribution: temurin | |
java-version: '11' | |
# TODO remove once testcontainers are updated | |
- name: pull ryuk image | |
run: docker pull testcontainersofficial/ryuk:0.3.0 | |
- name: test | |
run: ./mvnw clean test | |
latest-jaeger-es7: | |
name: Latest Jaeger and ES7 | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-java@v2 | |
with: | |
distribution: temurin | |
java-version: '11' | |
# TODO remove once testcontainers are updated | |
- name: pull ryuk image | |
run: docker pull testcontainersofficial/ryuk:0.3.0 | |
- name: compile | |
run: ./mvnw clean install -DskipTests | |
- name: test | |
run: ELASTICSEARCH_VERSION=7.3.0 ./mvnw clean test -pl jaeger-spark-dependencies-elasticsearch |