Skip to content

Commit

Permalink
chore(deps): update actions/upload-artifact action (#14)
Browse files Browse the repository at this point in the history
* chore(deps): update actions/upload-artifact action

* Add prefix to jacoco-build artifact

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Eric Durand-Tremblay <[email protected]>
  • Loading branch information
renovate[bot] and etremblay authored Jan 22, 2024
1 parent 6820ed1 commit c7db7b6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ runs:
${{ steps.gradle-properties.outputs.gradle-properties }}
- name: Upload report
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: "!cancelled()"
with:
name: ${{ inputs.task-name }}-report
Expand All @@ -93,7 +93,7 @@ runs:
${{ steps.metadata.outputs.artifact-path }}/build/reports/tests/${{ inputs.task-name }}/
- name: Upload results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: "!cancelled()"
with:
name: ${{ inputs.task-name }}-results
Expand All @@ -104,10 +104,10 @@ runs:
!${{ steps.metadata.outputs.artifact-path }}/build/test-results/${{ inputs.task-name }}/binary
- name: Upload coverage results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: "!cancelled()"
with:
name: jacoco-build
name: ${{ inputs.task-name }}-jacoco-build
retention-days: 1
if-no-files-found: error
path: |
Expand Down

0 comments on commit c7db7b6

Please sign in to comment.