Skip to content

Commit 293d277

Browse files
Merge branch 'main' into dependabot/gradle/android/com.android.tools.build-gradle-8.12.1
2 parents 1b2bbd1 + 4d56c91 commit 293d277

File tree

8 files changed

+22
-22
lines changed

8 files changed

+22
-22
lines changed

.github/workflows/api-level-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
lint-api-level:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v5
1515
- uses: actions/setup-java@v4
1616
with:
1717
distribution: 'temurin'

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242

4343
steps:
4444
- name: Checkout repository
45-
uses: actions/checkout@v4
45+
uses: actions/checkout@v5
4646

4747
- name: Set up JDK
4848
uses: actions/setup-java@v4

.github/workflows/gradle-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
build:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v5
1313
- name: Set up JDK
1414
uses: actions/setup-java@v4
1515
with:

.github/workflows/release-please-gha.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
release:
2020
runs-on: ubuntu-latest
2121
steps:
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v5
2323

2424
- name: Generate GitHub App token
2525
id: app-token

.github/workflows/sonarcloud.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
name: Build
2727
runs-on: ubuntu-latest
2828
steps:
29-
- uses: actions/checkout@v4
29+
- uses: actions/checkout@v5
3030
with:
3131
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
3232
- name: Set up JDK

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ plugins {
55
id 'maven-publish'
66
id 'signing'
77
id 'jacoco'
8-
id 'com.github.spotbugs' version '6.2.3'
8+
id 'com.github.spotbugs' version '6.2.4'
99
id "org.sonarqube" version "6.2.0.5505"
1010
}
1111

gradle/dependencies.gradle

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2,27 +2,27 @@ dependencies {
22
// Use JUnit test framework
33
testImplementation 'org.junit.jupiter:junit-jupiter:5.13.4'
44
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
5-
testImplementation 'org.mockito:mockito-core:5.18.0'
6-
testImplementation 'io.opentelemetry:opentelemetry-api:1.52.0'
7-
testImplementation 'io.opentelemetry:opentelemetry-context:1.52.0'
5+
testImplementation 'org.mockito:mockito-core:5.19.0'
6+
testImplementation 'io.opentelemetry:opentelemetry-api:1.53.0'
7+
testImplementation 'io.opentelemetry:opentelemetry-context:1.53.0'
88
testImplementation 'io.github.std-uritemplate:std-uritemplate:1.0.6'
99
implementation 'com.google.code.gson:gson:2.13.1'
1010

1111
implementation 'jakarta.annotation:jakarta.annotation-api:2.1.1'
1212

13-
implementation 'io.jsonwebtoken:jjwt-api:0.12.6'
14-
runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.12.6'
15-
runtimeOnly 'io.jsonwebtoken:jjwt-jackson:0.12.6'
13+
implementation 'io.jsonwebtoken:jjwt-api:0.12.7'
14+
runtimeOnly 'io.jsonwebtoken:jjwt-impl:0.12.7'
15+
runtimeOnly 'io.jsonwebtoken:jjwt-jackson:0.12.7'
1616
implementation 'com.auth0:jwks-rsa:0.23.0'
1717

1818
api 'com.squareup.okhttp3:okhttp:4.12.0'
19-
api 'com.azure:azure-core:1.54.1'
19+
api 'com.azure:azure-core:1.56.0'
2020

21-
api 'com.microsoft.kiota:microsoft-kiota-abstractions:1.8.8'
22-
api 'com.microsoft.kiota:microsoft-kiota-authentication-azure:1.8.8'
23-
implementation 'com.microsoft.kiota:microsoft-kiota-http-okHttp:1.8.8'
24-
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-json:1.8.8'
25-
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-text:1.8.8'
26-
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-form:1.8.8'
27-
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-multipart:1.8.8'
21+
api 'com.microsoft.kiota:microsoft-kiota-abstractions:1.8.9'
22+
api 'com.microsoft.kiota:microsoft-kiota-authentication-azure:1.8.9'
23+
implementation 'com.microsoft.kiota:microsoft-kiota-http-okHttp:1.8.9'
24+
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-json:1.8.9'
25+
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-text:1.8.9'
26+
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-form:1.8.9'
27+
implementation 'com.microsoft.kiota:microsoft-kiota-serialization-multipart:1.8.9'
2828
}

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<dependency>
3333
<groupId>com.azure</groupId>
3434
<artifactId>azure-core</artifactId>
35-
<version>1.55.5</version>
35+
<version>1.56.0</version>
3636
</dependency>
3737
<dependency>
3838
<groupId>org.junit.jupiter</groupId>
@@ -55,7 +55,7 @@
5555
<dependency>
5656
<groupId>com.github.spotbugs</groupId>
5757
<artifactId>spotbugs-annotations</artifactId>
58-
<version>4.9.3</version>
58+
<version>4.9.4</version>
5959
</dependency>
6060
</dependencies>
6161
</project>

0 commit comments

Comments
 (0)