Skip to content

Commit 57616d6

Browse files
authored
Merge pull request #2047 from microsoft/dependabot/github_actions/actions/upload-artifact-5
chore(deps): bump actions/upload-artifact from 4 to 5
2 parents 8027071 + b2a7039 commit 57616d6

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)