From a80cf7d4dec3a0cbea0cf6ef0542960bddb82510 Mon Sep 17 00:00:00 2001 From: "Gavin Barron (from Dev Box)" Date: Tue, 19 May 2026 09:36:47 -0700 Subject: [PATCH] chore(deps): consolidate dependabot dependency updates Combines the following dependabot PRs into a single update: - Bump actions/upload-artifact from 6 to 7 (#2588) - Bump com.google.code.gson:gson from 2.13.2 to 2.14.0 (#2580) - Bump googleapis/release-please-action from 4 to 5 (#2579) - Bump com.github.ben-manes:gradle-versions-plugin from 0.53.0 to 0.54.0 (#2574) - Bump dependabot/fetch-metadata from 3.0.0 to 3.1.0 (#2573) Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .github/workflows/api-level-lint.yml | 2 +- .github/workflows/auto-merge-dependabot.yml | 2 +- .github/workflows/gradle-build.yml | 4 ++-- .github/workflows/release-please-gha.yml | 4 ++-- .github/workflows/validate-public-api-surface.yml | 4 ++-- android/build.gradle | 2 +- pom.xml | 2 +- 7 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/api-level-lint.yml b/.github/workflows/api-level-lint.yml index a7b11d2bacc..ba5ef12d65f 100644 --- a/.github/workflows/api-level-lint.yml +++ b/.github/workflows/api-level-lint.yml @@ -31,7 +31,7 @@ jobs: working-directory: ./android - name: Upload linting results if: failure() && steps.lint.outcome == 'failure' - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 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 62a99a4807e..9d903943300 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@v3.0.0 + uses: dependabot/fetch-metadata@v3.1.0 with: github-token: "${{ secrets.GITHUB_TOKEN }}" diff --git a/.github/workflows/gradle-build.yml b/.github/workflows/gradle-build.yml index a987efba2b0..fbe8f6be6d6 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@v6 + uses: actions/upload-artifact@v7 with: name: UnitTests path: | build/reports/tests/test/** build/test-results/** - name: Upload a Build Artifact - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 with: name: drop path: | diff --git a/.github/workflows/release-please-gha.yml b/.github/workflows/release-please-gha.yml index 195010cc82e..b6bc742e5b1 100644 --- a/.github/workflows/release-please-gha.yml +++ b/.github/workflows/release-please-gha.yml @@ -29,8 +29,8 @@ jobs: private-key: ${{ secrets.RELEASE_PLEASE_TOKEN_PROVIDER_PEM }} - name: Release Please - uses: googleapis/release-please-action@v4 + uses: googleapis/release-please-action@v5 with: token: ${{ steps.app-token.outputs.token }} config-file: release-please-config.json - manifest-file: .release-please-manifest.json \ No newline at end of file + manifest-file: .release-please-manifest.json diff --git a/.github/workflows/validate-public-api-surface.yml b/.github/workflows/validate-public-api-surface.yml index 0eefa0835e8..1586c14b54c 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@v6 + uses: actions/upload-artifact@v7 continue-on-error: true with: name: patch path: '*.patch' - name: Upload explanations file as artifact if: always() - uses: actions/upload-artifact@v6 + uses: actions/upload-artifact@v7 continue-on-error: true with: name: explanations diff --git a/android/build.gradle b/android/build.gradle index feef0ea192c..50a34da4511 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -8,7 +8,7 @@ buildscript { dependencies { classpath "com.gradle:gradle-enterprise-gradle-plugin:3.19.2" classpath "gradle.plugin.com.github.viswaramamoorthy:gradle-util-plugins:0.1.0-RELEASE" - classpath "com.github.ben-manes:gradle-versions-plugin:0.53.0" + classpath "com.github.ben-manes:gradle-versions-plugin:0.54.0" classpath "com.android.tools.build:gradle:8.13.2" } } diff --git a/pom.xml b/pom.xml index af36635e65b..c700f01a001 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ com.google.code.gson gson - 2.13.2 + 2.14.0 com.squareup.okhttp3