Skip to content

Commit 65bc789

Browse files
authored
Merge pull request #2069 from microsoft/dependabot/github_actions/actions/upload-artifact-6
chore(deps): bump actions/upload-artifact from 5 to 6
2 parents a51df4d + b51d699 commit 65bc789

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)