diff --git a/.github/workflows/api-level-lint.yml b/.github/workflows/api-level-lint.yml
index e77dfcda316..a7b11d2bacc 100644
--- a/.github/workflows/api-level-lint.yml
+++ b/.github/workflows/api-level-lint.yml
@@ -21,7 +21,7 @@ jobs:
run: .\scripts\copyFilesOnBuild.ps1 -inputPath '.\src\main\java\com\microsoft\graph\generated'
shell: pwsh
- name: Setup Android SDK
- uses: android-actions/setup-android@v3.2.2
+ uses: android-actions/setup-android@v4.0.1
- name: Add execution right to the script
run: chmod +x gradlew
working-directory: ./android
@@ -31,7 +31,7 @@ jobs:
working-directory: ./android
- name: Upload linting results
if: failure() && steps.lint.outcome == 'failure'
- uses: actions/upload-artifact@v5
+ uses: actions/upload-artifact@v6
with:
name: lint-report
path: ./android/build/reports
diff --git a/.github/workflows/auto-merge-dependabot.yml b/.github/workflows/auto-merge-dependabot.yml
index d454cd18644..62a99a4807e 100644
--- a/.github/workflows/auto-merge-dependabot.yml
+++ b/.github/workflows/auto-merge-dependabot.yml
@@ -19,7 +19,7 @@ jobs:
steps:
- name: Dependabot metadata
id: metadata
- uses: dependabot/fetch-metadata@v2.4.0
+ uses: dependabot/fetch-metadata@v3.0.0
with:
github-token: "${{ secrets.GITHUB_TOKEN }}"
diff --git a/.github/workflows/gradle-build.yml b/.github/workflows/gradle-build.yml
index dbe128f71a6..a987efba2b0 100644
--- a/.github/workflows/gradle-build.yml
+++ b/.github/workflows/gradle-build.yml
@@ -27,14 +27,14 @@ jobs:
run: ./gradlew build
- name: Upload Unit Test Results
if: ${{ always() }}
- uses: actions/upload-artifact@v5
+ uses: actions/upload-artifact@v6
with:
name: UnitTests
path: |
build/reports/tests/test/**
build/test-results/**
- name: Upload a Build Artifact
- uses: actions/upload-artifact@v5
+ uses: actions/upload-artifact@v6
with:
name: drop
path: |
diff --git a/.github/workflows/validate-public-api-surface.yml b/.github/workflows/validate-public-api-surface.yml
index 618b8588db3..0eefa0835e8 100644
--- a/.github/workflows/validate-public-api-surface.yml
+++ b/.github/workflows/validate-public-api-surface.yml
@@ -35,14 +35,14 @@ jobs:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Upload patch file as artifact
if: always()
- uses: actions/upload-artifact@v5
+ uses: actions/upload-artifact@v6
continue-on-error: true
with:
name: patch
path: '*.patch'
- name: Upload explanations file as artifact
if: always()
- uses: actions/upload-artifact@v5
+ uses: actions/upload-artifact@v6
continue-on-error: true
with:
name: explanations
diff --git a/gradle/dependencies.gradle b/gradle/dependencies.gradle
index 492a7a450c5..13953ef2967 100644
--- a/gradle/dependencies.gradle
+++ b/gradle/dependencies.gradle
@@ -6,10 +6,10 @@ dependencies {
// Core Http library
api 'com.microsoft.graph:microsoft-graph-core:3.6.5'
- implementation 'com.microsoft.kiota:microsoft-kiota-authentication-azure:1.9.0'
- implementation 'com.microsoft.kiota:microsoft-kiota-http-okHttp:1.9.0'
- implementation 'com.microsoft.kiota:microsoft-kiota-serialization-json:1.9.0'
- implementation 'com.microsoft.kiota:microsoft-kiota-serialization-text:1.9.0'
- implementation 'com.microsoft.kiota:microsoft-kiota-serialization-form:1.9.0'
- implementation 'com.microsoft.kiota:microsoft-kiota-serialization-multipart:1.9.0'
+ implementation 'com.microsoft.kiota:microsoft-kiota-authentication-azure:1.9.2'
+ implementation 'com.microsoft.kiota:microsoft-kiota-http-okHttp:1.9.2'
+ implementation 'com.microsoft.kiota:microsoft-kiota-serialization-json:1.9.2'
+ implementation 'com.microsoft.kiota:microsoft-kiota-serialization-text:1.9.2'
+ implementation 'com.microsoft.kiota:microsoft-kiota-serialization-form:1.9.2'
+ implementation 'com.microsoft.kiota:microsoft-kiota-serialization-multipart:1.9.2'
}
diff --git a/pom.xml b/pom.xml
index 15dea394ca1..449e6942e83 100644
--- a/pom.xml
+++ b/pom.xml
@@ -35,7 +35,7 @@
org.junit.jupiter
junit-jupiter-api
- 6.0.1
+ 6.0.3
test