From 9d11626982e7a7774866f032a00e2c737a83f799 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 12 Feb 2024 16:17:40 +0000 Subject: [PATCH 1/2] Build(deps): Bump codecov/codecov-action from 3 to 4 Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 3 to 4. - [Release notes](https://github.com/codecov/codecov-action/releases) - [Commits](https://github.com/codecov/codecov-action/compare/v3...v4) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/node-test.yml | 2 +- .github/workflows/phpunit.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/node-test.yml b/.github/workflows/node-test.yml index 5bd114a60..82cd2b623 100644 --- a/.github/workflows/node-test.yml +++ b/.github/workflows/node-test.yml @@ -80,7 +80,7 @@ jobs: run: npm run test:coverage --if-present - name: Collect coverage - uses: codecov/codecov-action@eaaf4bedf32dbdc6b720b63067d99c4d77d6047d # v3.1.4 + uses: codecov/codecov-action@e0b68c6749509c5f83f984dd99a76a1c1a231044 # v4.0.1 with: files: ./coverage/lcov.info diff --git a/.github/workflows/phpunit.yml b/.github/workflows/phpunit.yml index ffc06e3df..da212d0bd 100644 --- a/.github/workflows/phpunit.yml +++ b/.github/workflows/phpunit.yml @@ -80,7 +80,7 @@ jobs: - name: Upload Unit coverage if: matrix.php-versions == matrix.coverage-on - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 with: root_dir: ./apps/${{ env.APP_NAME }} files: ./apps/${{ env.APP_NAME }}/tests/clover.unit.xml @@ -89,7 +89,7 @@ jobs: - name: Upload Integration coverage if: matrix.php-versions == matrix.coverage-on - uses: codecov/codecov-action@v3 + uses: codecov/codecov-action@v4 with: root_dir: ./apps/${{ env.APP_NAME }} files: ./apps/${{ env.APP_NAME }}/tests/clover.integration.xml From 7bc953dbf6d850bf43d5201ae36b0ac59fc0038d Mon Sep 17 00:00:00 2001 From: Ferdinand Thiessen Date: Mon, 12 Feb 2024 17:28:54 +0100 Subject: [PATCH 2/2] chore: Add `CODECOV_TOKEN` Signed-off-by: Ferdinand Thiessen --- .github/workflows/node-test.yml | 2 ++ .github/workflows/phpunit.yml | 4 ++++ 2 files changed, 6 insertions(+) diff --git a/.github/workflows/node-test.yml b/.github/workflows/node-test.yml index 82cd2b623..014e4f3f8 100644 --- a/.github/workflows/node-test.yml +++ b/.github/workflows/node-test.yml @@ -81,6 +81,8 @@ jobs: - name: Collect coverage uses: codecov/codecov-action@e0b68c6749509c5f83f984dd99a76a1c1a231044 # v4.0.1 + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} with: files: ./coverage/lcov.info diff --git a/.github/workflows/phpunit.yml b/.github/workflows/phpunit.yml index da212d0bd..4fcd2f69a 100644 --- a/.github/workflows/phpunit.yml +++ b/.github/workflows/phpunit.yml @@ -81,6 +81,8 @@ jobs: - name: Upload Unit coverage if: matrix.php-versions == matrix.coverage-on uses: codecov/codecov-action@v4 + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} with: root_dir: ./apps/${{ env.APP_NAME }} files: ./apps/${{ env.APP_NAME }}/tests/clover.unit.xml @@ -90,6 +92,8 @@ jobs: - name: Upload Integration coverage if: matrix.php-versions == matrix.coverage-on uses: codecov/codecov-action@v4 + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} with: root_dir: ./apps/${{ env.APP_NAME }} files: ./apps/${{ env.APP_NAME }}/tests/clover.integration.xml