From 245094d9be0da1ce3e9098e2d74a046fff4ac25c Mon Sep 17 00:00:00 2001 From: Yozhef Date: Mon, 17 Jun 2024 13:33:57 +0300 Subject: [PATCH] Update ci.yaml --- .github/workflows/ci.yaml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 9c28646..1abc966 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -76,10 +76,9 @@ jobs: - name: PHPUnit tests and Log Code coverage run: vendor/bin/phpunit --coverage-clover=coverage.xml if: matrix.coverage == 'xdebug' - - - name: Run codecov - uses: codecov/codecov-action@v1 + + - name: Upload coverage reports to Codecov if: matrix.coverage == 'xdebug' + uses: codecov/codecov-action@v4.0.1 with: - file: './coverage.xml' - fail_ci_if_error: true + token: ${{ secrets.CODECOV_TOKEN }}