Update OTel SDK to 1.58.0, OTel Agent to 2.24.0 (#18) #57
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: Build | |
| on: [pull_request, push] | |
| permissions: {} | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.os }}-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu] | |
| java: [11, 17, 21] | |
| scala: [2.13, 3] | |
| steps: | |
| - name: Check out | |
| uses: actions/checkout@v4 | |
| with: | |
| persist-credentials: false | |
| - name: Set up JDK | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: 17 | |
| distribution: temurin | |
| cache: "gradle" | |
| - name: Setup Gradle and run build | |
| uses: gradle/actions/setup-gradle@v4 | |
| - name: Build | |
| env: | |
| SMOKE_TEST_JAVA_VERSION: ${{ matrix.java }} # the smoke tests will pick this up | |
| SMOKE_TEST_SCALA_VERSION: ${{ matrix.scala }} # the smoke tests will pick this up | |
| run: | | |
| ./gradlew smoke-tests-images:http4s:jibDockerBuild | |
| ./gradlew build |