Bump com.microsoft.azure:applicationinsights-agent from 3.7.5 to 3.7.6 in /gradle-groovy-dsl in the all-dependencies group #1512
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: | |
| 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@v5 | |
| - name: Set up JDK for running Gradle | |
| uses: actions/setup-java@v5 | |
| 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 |