From a28930ab6ff35f05a285455a1df11ab6254a9251 Mon Sep 17 00:00:00 2001 From: Michelle Tran Date: Fri, 13 Dec 2024 11:12:17 -0500 Subject: [PATCH] Update CI to expose JUnit Artifacts This will allow us to download the JUnit XML files that gets generated during the CI run. Having the raw file will be useful for debugging test analytics stuff. --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d19b474d04..d6bfa9862f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -49,7 +49,7 @@ jobs: test: name: Test needs: [build] - uses: codecov/gha-workflows/.github/workflows/run-tests.yml@v1.2.26 + uses: codecov/gha-workflows/.github/workflows/run-tests.yml@v1.2.27 secrets: inherit with: repo: ${{ vars.CODECOV_IMAGE_V2 || 'codecov/self-hosted-api' }} @@ -57,7 +57,7 @@ jobs: build-self-hosted: name: Build Self Hosted API needs: [build, test] - uses: codecov/gha-workflows/.github/workflows/self-hosted.yml@v1.2.26 + uses: codecov/gha-workflows/.github/workflows/self-hosted.yml@v1.2.27 secrets: inherit with: repo: ${{ vars.CODECOV_IMAGE_V2 || 'codecov/self-hosted-api' }} @@ -66,7 +66,7 @@ jobs: name: Push Staging Image needs: [build, test] if: ${{ github.event_name == 'push' && github.event.ref == 'refs/heads/staging' && github.repository_owner == 'codecov' }} - uses: codecov/gha-workflows/.github/workflows/push-env.yml@v1.2.26 + uses: codecov/gha-workflows/.github/workflows/push-env.yml@v1.2.27 secrets: inherit with: environment: staging @@ -76,7 +76,7 @@ jobs: name: Push Production Image needs: [build, test] if: ${{ github.event_name == 'push' && github.event.ref == 'refs/heads/main' && github.repository_owner == 'codecov' }} - uses: codecov/gha-workflows/.github/workflows/push-env.yml@v1.2.26 + uses: codecov/gha-workflows/.github/workflows/push-env.yml@v1.2.27 secrets: inherit with: environment: production @@ -87,7 +87,7 @@ jobs: needs: [build-self-hosted, test] secrets: inherit if: ${{ github.event_name == 'push' && github.event.ref == 'refs/heads/main' && github.repository_owner == 'codecov' }} - uses: codecov/gha-workflows/.github/workflows/self-hosted.yml@v1.2.26 + uses: codecov/gha-workflows/.github/workflows/self-hosted.yml@v1.2.27 with: push_rolling: true repo: ${{ vars.CODECOV_IMAGE_V2 || 'codecov/self-hosted-api' }}