Skip to content

Commit aaf7175

Browse files
gavinbarronCopilot
andauthored
chore(deps): consolidate dependabot dependency updates (#2595)
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>
1 parent 76d0731 commit aaf7175

7 files changed

Lines changed: 10 additions & 10 deletions

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
working-directory: ./android
3232
- name: Upload linting results
3333
if: failure() && steps.lint.outcome == 'failure'
34-
uses: actions/upload-artifact@v6
34+
uses: actions/upload-artifact@v7
3535
with:
3636
name: lint-report
3737
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@v3.0.0
22+
uses: dependabot/fetch-metadata@v3.1.0
2323
with:
2424
github-token: "${{ secrets.GITHUB_TOKEN }}"
2525

.github/workflows/gradle-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@ jobs:
2727
run: ./gradlew build
2828
- name: Upload Unit Test Results
2929
if: ${{ always() }}
30-
uses: actions/upload-artifact@v6
30+
uses: actions/upload-artifact@v7
3131
with:
3232
name: UnitTests
3333
path: |
3434
build/reports/tests/test/**
3535
build/test-results/**
3636
- name: Upload a Build Artifact
37-
uses: actions/upload-artifact@v6
37+
uses: actions/upload-artifact@v7
3838
with:
3939
name: drop
4040
path: |

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ jobs:
2929
private-key: ${{ secrets.RELEASE_PLEASE_TOKEN_PROVIDER_PEM }}
3030

3131
- name: Release Please
32-
uses: googleapis/release-please-action@v4
32+
uses: googleapis/release-please-action@v5
3333
with:
3434
token: ${{ steps.app-token.outputs.token }}
3535
config-file: release-please-config.json
36-
manifest-file: .release-please-manifest.json
36+
manifest-file: .release-please-manifest.json

.github/workflows/validate-public-api-surface.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,14 @@ jobs:
3535
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3636
- name: Upload patch file as artifact
3737
if: always()
38-
uses: actions/upload-artifact@v6
38+
uses: actions/upload-artifact@v7
3939
continue-on-error: true
4040
with:
4141
name: patch
4242
path: '*.patch'
4343
- name: Upload explanations file as artifact
4444
if: always()
45-
uses: actions/upload-artifact@v6
45+
uses: actions/upload-artifact@v7
4646
continue-on-error: true
4747
with:
4848
name: explanations

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ buildscript {
88
dependencies {
99
classpath "com.gradle:gradle-enterprise-gradle-plugin:3.19.2"
1010
classpath "gradle.plugin.com.github.viswaramamoorthy:gradle-util-plugins:0.1.0-RELEASE"
11-
classpath "com.github.ben-manes:gradle-versions-plugin:0.53.0"
11+
classpath "com.github.ben-manes:gradle-versions-plugin:0.54.0"
1212
classpath "com.android.tools.build:gradle:8.13.2"
1313
}
1414
}

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<dependency>
2121
<groupId>com.google.code.gson</groupId>
2222
<artifactId>gson</artifactId>
23-
<version>2.13.2</version>
23+
<version>2.14.0</version>
2424
</dependency>
2525
<dependency>
2626
<groupId>com.squareup.okhttp3</groupId>

0 commit comments

Comments
 (0)