diff --git a/.github/workflows/api-level-lint.yml b/.github/workflows/api-level-lint.yml
index b65a1017..acebe48a 100644
--- a/.github/workflows/api-level-lint.yml
+++ b/.github/workflows/api-level-lint.yml
@@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- - uses: actions/setup-java@v4
+ - uses: actions/setup-java@v5
with:
distribution: 'temurin'
java-version: 21
diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml
index c0f88e9c..c47a8e5e 100644
--- a/.github/workflows/codeql-analysis.yml
+++ b/.github/workflows/codeql-analysis.yml
@@ -45,7 +45,7 @@ jobs:
uses: actions/checkout@v5
- name: Set up JDK
- uses: actions/setup-java@v4
+ uses: actions/setup-java@v5
with:
java-version: 21
distribution: 'temurin'
diff --git a/.github/workflows/gradle-build.yml b/.github/workflows/gradle-build.yml
index 30d04c2c..da9bed37 100644
--- a/.github/workflows/gradle-build.yml
+++ b/.github/workflows/gradle-build.yml
@@ -11,7 +11,7 @@ jobs:
steps:
- uses: actions/checkout@v5
- name: Set up JDK
- uses: actions/setup-java@v4
+ uses: actions/setup-java@v5
with:
java-version: 21
distribution: 'temurin'
diff --git a/.github/workflows/sonarcloud.yml b/.github/workflows/sonarcloud.yml
index 75440b8e..32910aee 100644
--- a/.github/workflows/sonarcloud.yml
+++ b/.github/workflows/sonarcloud.yml
@@ -30,7 +30,7 @@ jobs:
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Set up JDK
- uses: actions/setup-java@v4
+ uses: actions/setup-java@v5
with:
java-version: 21
distribution: 'temurin'
diff --git a/android/build.gradle b/android/build.gradle
index 1b0307bc..06afe8fb 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.1"
+ classpath "com.android.tools.build:gradle:8.13.0"
classpath "com.github.ben-manes:gradle-versions-plugin:0.52.0"
}
}
diff --git a/build.gradle b/build.gradle
index ca9b456f..6b39e439 100644
--- a/build.gradle
+++ b/build.gradle
@@ -5,8 +5,9 @@ plugins {
id 'maven-publish'
id 'signing'
id 'jacoco'
- id 'com.github.spotbugs' version '6.2.4'
- id "org.sonarqube" version "6.2.0.5505"
+ id 'com.github.spotbugs' version '6.2.5'
+ id "org.sonarqube" version "6.3.1.5724"
+
}
java {
diff --git a/gradle/dependencies.gradle b/gradle/dependencies.gradle
index d7306038..33cdbfbd 100644
--- a/gradle/dependencies.gradle
+++ b/gradle/dependencies.gradle
@@ -3,26 +3,26 @@ dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter:5.13.4'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
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.opentelemetry:opentelemetry-api:1.54.0'
+ testImplementation 'io.opentelemetry:opentelemetry-context:1.54.0'
testImplementation 'io.github.std-uritemplate:std-uritemplate:1.0.6'
- implementation 'com.google.code.gson:gson:2.13.1'
+ implementation 'com.google.code.gson:gson:2.13.2'
implementation 'jakarta.annotation:jakarta.annotation-api:2.1.1'
- 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 'io.jsonwebtoken:jjwt-api:0.13.0'
+ runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.13.0'
+ runtimeOnly 'io.jsonwebtoken:jjwt-jackson:0.13.0'
implementation 'com.auth0:jwks-rsa:0.23.0'
api 'com.squareup.okhttp3:okhttp:4.12.0'
- api 'com.azure:azure-core:1.56.0'
+ api 'com.azure:azure-core:1.56.1'
- 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'
+ api 'com.microsoft.kiota:microsoft-kiota-abstractions:1.8.10'
+ api 'com.microsoft.kiota:microsoft-kiota-authentication-azure:1.8.10'
+ implementation 'com.microsoft.kiota:microsoft-kiota-http-okHttp:1.8.10'
+ implementation 'com.microsoft.kiota:microsoft-kiota-serialization-json:1.8.10'
+ implementation 'com.microsoft.kiota:microsoft-kiota-serialization-text:1.8.10'
+ implementation 'com.microsoft.kiota:microsoft-kiota-serialization-form:1.8.10'
+ implementation 'com.microsoft.kiota:microsoft-kiota-serialization-multipart:1.8.10'
}
diff --git a/pom.xml b/pom.xml
index 0bdd8d53..0ea86a26 100644
--- a/pom.xml
+++ b/pom.xml
@@ -22,7 +22,7 @@
com.google.code.gson
gson
- 2.13.1
+ 2.13.2
com.squareup.okhttp3
@@ -32,7 +32,7 @@
com.azure
azure-core
- 1.56.0
+ 1.56.1
org.junit.jupiter