Skip to content

Commit b51d699

Browse files
chore(deps): bump actions/upload-artifact from 5 to 6
Bumps [actions/upload-artifact](https://github.com/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 ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent a51df4d commit b51d699

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
@@ -26,7 +26,7 @@ jobs:
2626
run: ./gradlew --no-daemon build -Pandroid=true
2727
- name: Upload linting results
2828
if: failure() && steps.lint.outcome == 'failure'
29-
uses: actions/upload-artifact@v5
29+
uses: actions/upload-artifact@v6
3030
with:
3131
name: lint-report
3232
path: ./**/build/reports

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@ jobs:
2222
run: ./gradlew --no-daemon build -Pjava8=true
2323
- name: Upload Unit Test Results
2424
if: ${{ always() }}
25-
uses: actions/upload-artifact@v5
25+
uses: actions/upload-artifact@v6
2626
with:
2727
name: Unit Tests
2828
path: |
2929
components/**/build/reports/tests/test/**
3030
components/**/build-test-results/**
3131
- name: Upload a Build Artifact
32-
uses: actions/upload-artifact@v5
32+
uses: actions/upload-artifact@v6
3333
with:
3434
name: ${{ inputs.componentName }}-drop
3535
path: ./**/build/*

0 commit comments

Comments
 (0)