From 6389316206111eb8e9ace6babc3598684816cd4c Mon Sep 17 00:00:00 2001 From: Jake Jackson Date: Tue, 28 Oct 2025 15:39:13 -0400 Subject: [PATCH] Change artifact name from coverage-report to coverage.xml small change since the report is not being found. this is one of many small PRs to try and get this working. --- .github/workflows/sonarcloud_pr.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sonarcloud_pr.yml b/.github/workflows/sonarcloud_pr.yml index 192066707f..58d0c8fc6f 100644 --- a/.github/workflows/sonarcloud_pr.yml +++ b/.github/workflows/sonarcloud_pr.yml @@ -24,7 +24,7 @@ jobs: - name: Download coverage report artifact uses: actions/download-artifact@v4 with: - name: coverage-report + name: coverage.xml path: reports/ github-token: ${{ secrets.GITHUB_TOKEN }} run-id: ${{ github.event.workflow_run.id }}