Bump io.opentelemetry.instrumentation:opentelemetry-instrumentation-bom from 2.9.0 to 2.10.0 #1244
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: Build | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK for running Gradle | |
uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 17 | |
- name: Maven | |
run: ./mvnw package | |
- name: Gradle (Groovy DSL) | |
uses: gradle/gradle-build-action@v3 | |
with: | |
arguments: build | |
build-root-directory: gradle-groovy-dsl | |
- name: Gradle (Kotlin DSL) | |
uses: gradle/gradle-build-action@v3 | |
with: | |
arguments: build | |
build-root-directory: gradle-kotlin-dsl |