Skip to content

Commit

Permalink
Merge pull request #534 from usefulness/renovate/actions-upload-artif…
Browse files Browse the repository at this point in the history
…act-4.x

Update actions/upload-artifact action to v4
  • Loading branch information
mateuszkwiecinski authored Dec 14, 2023
2 parents 7e51830 + 04c3779 commit c7b1a52
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,13 @@ jobs:

- name: Upload test results
if: ${{ always() }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: test-results
path: "${{ github.workspace }}/**/build/reports/tests"

- name: Upload jacoco report
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: jacoco-report
path: "${{ github.workspace }}/**/build/reports/jacoco"
Expand Down Expand Up @@ -207,13 +207,13 @@ jobs:

- name: Upload failed screenshots
if: ${{ failure() }}
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: failedScreenshots
path: "${{ github.workspace }}/**/build/failedScreenshots"

- name: Upload screenshot tests result
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: screenshots
path: "${{ github.workspace }}/**/build/*AndroidTest/"

0 comments on commit c7b1a52

Please sign in to comment.