Skip to content

Commit

Permalink
Update actions/upload-artifact action to v4 (#213)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Dec 15, 2023
1 parent 750a572 commit 6892cd2
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,15 +106,15 @@ jobs:

- name: HTML coverage to artifacts
if: steps.check_phpunit.outputs.files_exists == 'true'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: coverage_unit_${{ matrix.nextcloud }}_${{ matrix.php-versions }}_mysql
path: apps/${{ env.APP_NAME }}/tests/coverage/php/unit
if-no-files-found: error

- name: Clover coverage to artifacts
if: steps.check_phpunit.outputs.files_exists == 'true'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: clover_coverage_unit_${{ matrix.nextcloud }}_${{ matrix.php-versions }}_mysql.xml
path: apps/${{ env.APP_NAME }}/tests/coverage/php/unit/clover.xml
Expand Down Expand Up @@ -144,15 +144,15 @@ jobs:

- name: HTML coverage to artifacts
if: steps.check_integration.outputs.files_exists == 'true'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: coverage_integration_${{ matrix.nextcloud }}_${{ matrix.php-versions }}_mysql
path: apps/${{ env.APP_NAME }}/tests/coverage/php/integration
if-no-files-found: error

- name: Clover coverage to artifacts
if: steps.check_integration.outputs.files_exists == 'true'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: clover_coverage_integration_${{ matrix.nextcloud }}_${{ matrix.php-versions }}_mysql.xml
path: apps/${{ env.APP_NAME }}/tests/coverage/php/integration/clover.xml
Expand Down Expand Up @@ -250,15 +250,15 @@ jobs:

- name: HTML coverage to artifacts
if: steps.check_phpunit.outputs.files_exists == 'true'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: coverage_unit_${{ matrix.nextcloud }}_${{ matrix.php-versions }}_pgsql
path: apps/${{ env.APP_NAME }}/tests/coverage/php/unit
if-no-files-found: error

- name: Clover coverage to artifacts
if: steps.check_phpunit.outputs.files_exists == 'true'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: clover_coverage_unit_${{ matrix.nextcloud }}_${{ matrix.php-versions }}_pgsql.xml
path: apps/${{ env.APP_NAME }}/tests/coverage/php/unit/clover.xml
Expand Down Expand Up @@ -293,15 +293,15 @@ jobs:

- name: HTML coverage to artifacts
if: steps.check_integration.outputs.files_exists == 'true'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: coverage_integration_${{ matrix.nextcloud }}_${{ matrix.php-versions }}_pgsql
path: apps/${{ env.APP_NAME }}/tests/coverage/php/integration
if-no-files-found: error

- name: Clover coverage to artifacts
if: steps.check_integration.outputs.files_exists == 'true'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: clover_coverage_integration_${{ matrix.nextcloud }}_${{ matrix.php-versions }}_pgsql.xml
path: apps/${{ env.APP_NAME }}/tests/coverage/php/integration/clover.xml
Expand Down

0 comments on commit 6892cd2

Please sign in to comment.