diff --git a/.github/workflows/api-level-lint.yml b/.github/workflows/api-level-lint.yml index 0761df0a..b65a1017 100644 --- a/.github/workflows/api-level-lint.yml +++ b/.github/workflows/api-level-lint.yml @@ -11,7 +11,7 @@ jobs: lint-api-level: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: actions/setup-java@v4 with: distribution: 'temurin' diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 6cfd35de..c0f88e9c 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -42,7 +42,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Set up JDK uses: actions/setup-java@v4 diff --git a/.github/workflows/gradle-build.yml b/.github/workflows/gradle-build.yml index 5200b4e0..30d04c2c 100644 --- a/.github/workflows/gradle-build.yml +++ b/.github/workflows/gradle-build.yml @@ -9,7 +9,7 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Set up JDK uses: actions/setup-java@v4 with: diff --git a/.github/workflows/sonarcloud.yml b/.github/workflows/sonarcloud.yml index b94fdc7d..75440b8e 100644 --- a/.github/workflows/sonarcloud.yml +++ b/.github/workflows/sonarcloud.yml @@ -26,7 +26,7 @@ jobs: name: Build runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis - name: Set up JDK diff --git a/android/build.gradle b/android/build.gradle index bcb9350d..1b0307bc 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -6,7 +6,7 @@ buildscript { dependencies { classpath "com.gradle:gradle-enterprise-gradle-plugin:3.19.2" - classpath "com.android.tools.build:gradle:8.12.0" + classpath "com.android.tools.build:gradle:8.12.1" classpath "com.github.ben-manes:gradle-versions-plugin:0.52.0" } } diff --git a/build.gradle b/build.gradle index 3f32da1e..ca9b456f 100644 --- a/build.gradle +++ b/build.gradle @@ -5,7 +5,7 @@ plugins { id 'maven-publish' id 'signing' id 'jacoco' - id 'com.github.spotbugs' version '6.2.3' + id 'com.github.spotbugs' version '6.2.4' id "org.sonarqube" version "6.2.0.5505" } diff --git a/gradle/dependencies.gradle b/gradle/dependencies.gradle index 328efcb2..d7306038 100644 --- a/gradle/dependencies.gradle +++ b/gradle/dependencies.gradle @@ -2,27 +2,27 @@ dependencies { // Use JUnit test framework testImplementation 'org.junit.jupiter:junit-jupiter:5.13.4' testRuntimeOnly 'org.junit.platform:junit-platform-launcher' - testImplementation 'org.mockito:mockito-core:5.18.0' - testImplementation 'io.opentelemetry:opentelemetry-api:1.52.0' - testImplementation 'io.opentelemetry:opentelemetry-context:1.52.0' + testImplementation 'org.mockito:mockito-core:5.19.0' + testImplementation 'io.opentelemetry:opentelemetry-api:1.53.0' + testImplementation 'io.opentelemetry:opentelemetry-context:1.53.0' testImplementation 'io.github.std-uritemplate:std-uritemplate:1.0.6' implementation 'com.google.code.gson:gson:2.13.1' implementation 'jakarta.annotation:jakarta.annotation-api:2.1.1' - implementation 'io.jsonwebtoken:jjwt-api:0.12.6' - runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.12.6' - runtimeOnly 'io.jsonwebtoken:jjwt-jackson:0.12.6' + implementation 'io.jsonwebtoken:jjwt-api:0.12.7' + runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.12.7' + runtimeOnly 'io.jsonwebtoken:jjwt-jackson:0.12.7' implementation 'com.auth0:jwks-rsa:0.23.0' api 'com.squareup.okhttp3:okhttp:4.12.0' - api 'com.azure:azure-core:1.54.1' + api 'com.azure:azure-core:1.56.0' - api 'com.microsoft.kiota:microsoft-kiota-abstractions:1.8.8' - api 'com.microsoft.kiota:microsoft-kiota-authentication-azure:1.8.8' - implementation 'com.microsoft.kiota:microsoft-kiota-http-okHttp:1.8.8' - implementation 'com.microsoft.kiota:microsoft-kiota-serialization-json:1.8.8' - implementation 'com.microsoft.kiota:microsoft-kiota-serialization-text:1.8.8' - implementation 'com.microsoft.kiota:microsoft-kiota-serialization-form:1.8.8' - implementation 'com.microsoft.kiota:microsoft-kiota-serialization-multipart:1.8.8' + api 'com.microsoft.kiota:microsoft-kiota-abstractions:1.8.9' + api 'com.microsoft.kiota:microsoft-kiota-authentication-azure:1.8.9' + implementation 'com.microsoft.kiota:microsoft-kiota-http-okHttp:1.8.9' + implementation 'com.microsoft.kiota:microsoft-kiota-serialization-json:1.8.9' + implementation 'com.microsoft.kiota:microsoft-kiota-serialization-text:1.8.9' + implementation 'com.microsoft.kiota:microsoft-kiota-serialization-form:1.8.9' + implementation 'com.microsoft.kiota:microsoft-kiota-serialization-multipart:1.8.9' } diff --git a/pom.xml b/pom.xml index 0a4e9d4a..0bdd8d53 100644 --- a/pom.xml +++ b/pom.xml @@ -32,7 +32,7 @@ com.azure azure-core - 1.55.5 + 1.56.0 org.junit.jupiter @@ -55,7 +55,7 @@ com.github.spotbugs spotbugs-annotations - 4.9.3 + 4.9.4