Skip to content

Commit 643e08b

Browse files
chore(deps): bump actions/upload-artifact
Bumps the github-actions-dependencies group with 1 update: [actions/upload-artifact](https://github.com/actions/upload-artifact). Updates `actions/upload-artifact` from 5 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v5...v6) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 93374fb commit 643e08b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.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@v5
34+
uses: actions/upload-artifact@v6
3535
with:
3636
name: lint-report
3737
path: ./android/build/reports

.github/workflows/gradle-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,14 @@ jobs:
3030
run: ./gradlew build
3131
- name: Upload Unit Test Results
3232
if: ${{ always() }}
33-
uses: actions/upload-artifact@v5
33+
uses: actions/upload-artifact@v6
3434
with:
3535
name: UnitTests
3636
path: |
3737
build/reports/tests/test/**
3838
build/test-results/**
3939
- name: Upload a Build Artifact
40-
uses: actions/upload-artifact@v5
40+
uses: actions/upload-artifact@v6
4141
with:
4242
name: drop
4343
path: |

0 commit comments

Comments
 (0)