Skip to content

Commit 4a27304

Browse files
Merge pull request #2064 from microsoftgraph/dependabot/consolidated-updates
chore(deps): consolidated dependency updates
2 parents cbe8ea3 + a12d525 commit 4a27304

File tree

12 files changed

+29
-29
lines changed

12 files changed

+29
-29
lines changed

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

Lines changed: 2 additions & 2 deletions
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@v5
14+
- uses: actions/checkout@v6
1515
- uses: actions/setup-java@v5
1616
with:
1717
distribution: 'temurin'
@@ -28,7 +28,7 @@ jobs:
2828
working-directory: ./android
2929
- name: Upload linting results
3030
if: failure() && steps.lint.outcome == 'failure'
31-
uses: actions/upload-artifact@v4
31+
uses: actions/upload-artifact@v6
3232
with:
3333
name: lint-report
3434
path: ./android/build/reports

.github/workflows/auto-merge-dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
steps:
2020
- name: Dependabot metadata
2121
id: metadata
22-
uses: dependabot/fetch-metadata@v2.4.0
22+
uses: dependabot/fetch-metadata@ffa630c65fa7e0ecfa0625b5ceda64399aea1b36 #3.0.0
2323
with:
2424
github-token: "${{ secrets.GITHUB_TOKEN }}"
2525

.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@v5
45+
uses: actions/checkout@v6
4646

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

.github/workflows/gradle-build.yml

Lines changed: 2 additions & 2 deletions
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@v5
12+
- uses: actions/checkout@v6
1313
- name: Set up JDK
1414
uses: actions/setup-java@v5
1515
with:
@@ -24,7 +24,7 @@ jobs:
2424
working-directory: ./java-8
2525
run: .././gradlew build
2626
- name: Upload a Build Artifact
27-
uses: actions/upload-artifact@v4
27+
uses: actions/upload-artifact@v6
2828
with:
2929
name: drop
3030
path: |

.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@v5
22+
- uses: actions/checkout@v6
2323

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

.github/workflows/sonarcloud.yml

Lines changed: 3 additions & 3 deletions
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@v5
29+
- uses: actions/checkout@v6
3030
with:
3131
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
3232
- name: Set up JDK
@@ -36,13 +36,13 @@ jobs:
3636
distribution: 'temurin'
3737
cache: gradle
3838
- name: Cache SonarCloud packages
39-
uses: actions/cache@v4
39+
uses: actions/cache@v5
4040
with:
4141
path: ~/.sonar/cache
4242
key: ${{ runner.os }}-sonar
4343
restore-keys: ${{ runner.os }}-sonar
4444
- name: Cache Gradle packages
45-
uses: actions/cache@v4
45+
uses: actions/cache@v5
4646
with:
4747
path: ~/.gradle/caches
4848
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}

android/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ apply plugin: "com.github.ben-manes.versions"
2323
android {
2424
namespace "com.microsoft.graph"
2525

26-
compileSdkVersion 36
26+
compileSdkVersion 37
2727

2828
defaultConfig {
2929
versionCode 1
3030
versionName "1.0"
3131
minSdkVersion 26
32-
targetSdkVersion 36
32+
targetSdkVersion 37
3333
}
3434

3535
buildTypes {

android/gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.2-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.4-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ plugins {
66
id 'signing'
77
id 'jacoco'
88
id 'com.github.spotbugs' version '6.2.5'
9-
id "org.sonarqube" version "6.3.1.5724"
9+
id "org.sonarqube" version "7.2.2.6593"
1010

1111
}
1212

gradle/dependencies.gradle

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
dependencies {
22
// Use JUnit test framework
3-
testImplementation 'org.junit.jupiter:junit-jupiter:5.13.4'
3+
testImplementation 'org.junit.jupiter:junit-jupiter:6.0.2'
44
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
5-
testImplementation 'org.mockito:mockito-core:5.19.0'
5+
testImplementation 'org.mockito:mockito-core:5.21.0'
66
testImplementation 'io.opentelemetry:opentelemetry-api:1.54.0'
77
testImplementation 'io.opentelemetry:opentelemetry-context:1.54.0'
88
testImplementation 'io.github.std-uritemplate:std-uritemplate:1.0.6'
@@ -16,13 +16,13 @@ dependencies {
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.56.1'
19+
api 'com.azure:azure-core:1.57.1'
2020

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

0 commit comments

Comments
 (0)