Skip to content

Commit b2a7039

Browse files
chore(deps): bump actions/upload-artifact from 4 to 5
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 5. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 8027071 commit b2a7039

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@v4
29+
uses: actions/upload-artifact@v5
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@v4
25+
uses: actions/upload-artifact@v5
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@v4
32+
uses: actions/upload-artifact@v5
3333
with:
3434
name: ${{ inputs.componentName }}-drop
3535
path: ./**/build/*

0 commit comments

Comments
 (0)