diff --git a/.github/actions/reports-group/codacy-uploader/action.yml b/.github/actions/reports-group/codacy-uploader/action.yml index 50db556e..f441fea8 100644 --- a/.github/actions/reports-group/codacy-uploader/action.yml +++ b/.github/actions/reports-group/codacy-uploader/action.yml @@ -92,5 +92,5 @@ runs: const {REPORTS, METADATA} = process.env; const metadata = JSON.parse(METADATA); - core.setOutput('group', metadata.path.split(',').join('\n')); // Trusted path as it comes from trusted metadata (=from `reports-group/load-metadata`) + core.setOutput('groups', metadata.path.split(',').join('\n')); // Trusted path as it comes from trusted metadata (=from `reports-group/load-metadata`) core.setOutput('reports', REPORTS.split(',').join('\n')); // Trusted path, see `build-uploader-options` step diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 1883c74f..087682f6 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -83,7 +83,7 @@ jobs: id: unit-tests-coverage-group uses: ./.github/actions/reports-group/create with: - name: unit-tests-php${{ matrix.php-version }} + name: unit-tests format: clover files: build/coverage-phpunit/unit.clover flags: | @@ -97,7 +97,7 @@ jobs: id: functional-tests-coverage-group uses: ./.github/actions/reports-group/create with: - name: functional-tests-php${{ matrix.php-version }} + name: functional-tests format: clover files: | build/coverage-phpunit/functional.clover