diff --git a/.github/workflows/Codecov.yml b/.github/workflows/Codecov.yml index 0913da7..b89414b 100644 --- a/.github/workflows/Codecov.yml +++ b/.github/workflows/Codecov.yml @@ -38,7 +38,7 @@ jobs: - name: Run PHPUnit unit tests with coverage and test results run: phpunit --testsuite unit --coverage-clover=coverage-unit.xml --log-junit junit.xml - name: Upload unit coverage to Codecov - uses: codecov/codecov-action@v6 + uses: codecov/codecov-action@v7 with: files: ./coverage-unit.xml flags: unit @@ -46,7 +46,7 @@ jobs: - name: Run PHPUnit integration tests with coverage and test results run: phpunit --testsuite integration --coverage-clover=coverage-integration.xml --log-junit junit.xml - name: Upload integration coverage to Codecov - uses: codecov/codecov-action@v6 + uses: codecov/codecov-action@v7 with: files: ./coverage-integration.xml flags: integration @@ -54,7 +54,7 @@ jobs: - name: Run PHPUnit smoke tests with coverage and test results run: phpunit --testsuite smoke --coverage-clover=coverage-smoke.xml --log-junit junit.xml - name: Upload smoke coverage to Codecov - uses: codecov/codecov-action@v6 + uses: codecov/codecov-action@v7 with: files: ./coverage-smoke.xml flags: smoke