Bump io.opentelemetry.contrib:opentelemetry-aws-resources from 1.38.0-alpha to 1.39.0-alpha in /java in the opentelemetry-deps-java group across 1 directory #595
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 Build (Java)" | |
on: | |
push: | |
paths: | |
- 'java/**' | |
- '.github/workflows/ci-java.yml' | |
branches: | |
- main | |
pull_request: | |
paths: | |
- 'java/**' | |
- '.github/workflows/ci-java.yml' | |
branches: | |
- main | |
permissions: | |
pull-requests: write | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: corretto | |
java-version: 17 | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@v4 | |
with: | |
add-job-summary-as-pr-comment: on-failure # Valid values are 'never' (default), 'always', and 'on-failure' | |
- name: Execute Gradle build | |
run: | | |
cd java | |
./gradlew build --scan --stacktrace |