From a44c2e1c5348a7dccd502a37601af7430bc3d738 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 9 Jun 2026 23:13:12 +0000 Subject: [PATCH] ci(deps): bump codecov/codecov-action from 6 to 7 Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 6 to 7. - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/codecov/codecov-action/compare/v6...v7) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/Codecov.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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