Skip to content

Commit

Permalink
chore(deps): bump actions/download-artifact from 3 to 4 (#2538)
Browse files Browse the repository at this point in the history
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Yamil Medina <[email protected]>
  • Loading branch information
dependabot[bot] and yamilmedina authored Dec 19, 2023
1 parent 1ab6b75 commit d72d71b
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/gradle-run-unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:

# Uploads test results as GitHub artifacts, so publish-test-results can find them later.
- name: Upload Test Results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: always()
with:
# This name is referenced in the publish-test-results workflow.
Expand All @@ -61,16 +61,17 @@ jobs:
**/build/outputs/androidTest-results/**/*.xml
- name: Generate report
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: report
path: app/build/reports/jacoco

- name: Download Test Reports Folder
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: report
path: app/build/reports/jacoco
merge-multiple: true

- name: Upload Test Report
uses: codecov/codecov-action@v3
Expand Down

0 comments on commit d72d71b

Please sign in to comment.