Skip to content

Bump io.opentelemetry:opentelemetry-context from 1.29.0 to 1.30.0 in /components/authentication/azure/android #1107

Bump io.opentelemetry:opentelemetry-context from 1.29.0 to 1.30.0 in /components/authentication/azure/android

Bump io.opentelemetry:opentelemetry-context from 1.29.0 to 1.30.0 in /components/authentication/azure/android #1107

Workflow file for this run

name: Static analysis with SonarCloud
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
name: Build
runs-on: ubuntu-latest
if: ${{ ( github.event_name == 'push' ) || ( github.event_name == 'pull_request' && github.event.pull_request.head.repo.owner.login == 'microsoft' ) }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: 17
distribution: 'temurin'
cache: gradle
- name: Cache SonarCloud packages
uses: actions/cache@v3
with:
path: ~/.sonar/cache
key: ${{ runner.os }}-sonar
restore-keys: ${{ runner.os }}-sonar
- name: Build and analyze
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: ./gradlew --no-daemon build sonarqube --info