From b504ca4303280d9275f49660981fdca85a497fe5 Mon Sep 17 00:00:00 2001 From: Peter Nied Date: Fri, 10 Nov 2023 12:05:24 -0600 Subject: [PATCH] Fix the association of code coverage results with source code (#3668) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ### Description Fix the association of code coverage results with source code. You'll have seen how this was broken because we stopped getting the comment on PRs with coverage information. My apologies for breaking this in the most recent change to centralized the CC runs. ### Issues Resolved - Resolves https://github.com/opensearch-project/security/issues/2649 ### Testing ✅ Inspection CC report on this PR, see [[link]](https://github.com/opensearch-project/security/pull/3668#issuecomment-1802489151). ### Check List - [ ] ~New functionality includes testing~ - [ ] ~New functionality has been documented~ - [X] Commits are signed per the DCO using --signoff By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license. For more information on following Developer Certificate of Origin and signing off your commits, please check [here](https://github.com/opensearch-project/OpenSearch/blob/main/CONTRIBUTING.md#developer-certificate-of-origin). --------- Signed-off-by: Peter Nied --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 009cfc8fe5..399dec5e48 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -73,6 +73,7 @@ jobs: - "integration-tests" runs-on: ubuntu-latest steps: + - uses: actions/checkout@v4 - uses: actions/download-artifact@v3 with: path: downloaded-artifacts @@ -101,7 +102,6 @@ jobs: with: | token: ${{ secrets.CODECOV_TOKEN }} fail_ci_if_error: true - directory: downloaded-artifacts verbose: true