From 2172b775c48045c5ad0ff2c3871370640d2b1547 Mon Sep 17 00:00:00 2001 From: Michelle Tran Date: Wed, 6 Nov 2024 12:41:08 -0500 Subject: [PATCH] Update workflow to use basic-test-results --- .github/workflows/ci.yml | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fb2151ca8..a866b8075 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,6 +13,8 @@ on: permissions: contents: "read" id-token: "write" + issues: "write" + pull-requests: "write" concurrency: group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} @@ -22,11 +24,11 @@ jobs: lint: name: Run Lint - uses: codecov/gha-workflows/.github/workflows/lint.yml@v1.2.24 + uses: codecov/gha-workflows/.github/workflows/lint.yml@v1.2.26 build: name: Build Worker - uses: codecov/gha-workflows/.github/workflows/build-app.yml@v1.2.24 + uses: codecov/gha-workflows/.github/workflows/build-app.yml@v1.2.26 secrets: inherit with: @@ -35,14 +37,14 @@ jobs: codecovstartup: name: Codecov Startup needs: build - uses: codecov/gha-workflows/.github/workflows/codecov-startup.yml@v1.2.24 + uses: codecov/gha-workflows/.github/workflows/codecov-startup.yml@v1.2.26 secrets: inherit test: name: Test needs: [build] - uses: codecov/gha-workflows/.github/workflows/run-tests.yml@v1.2.24 + uses: codecov/gha-workflows/.github/workflows/run-tests.yml@v1.2.26 secrets: inherit with: @@ -52,7 +54,7 @@ jobs: name: Build Self Hosted Worker needs: [build, test] - uses: codecov/gha-workflows/.github/workflows/self-hosted.yml@v1.2.24 + uses: codecov/gha-workflows/.github/workflows/self-hosted.yml@v1.2.26 secrets: inherit with: repo: ${{ vars.CODECOV_IMAGE_V2 || 'codecov/self-hosted-worker' }} @@ -61,7 +63,7 @@ jobs: name: Push Staging Image needs: [build, test] if: ${{ github.event_name == 'push' && (github.event.ref == 'refs/heads/main' || github.event.ref == 'refs/heads/staging') && github.repository_owner == 'codecov' }} - uses: codecov/gha-workflows/.github/workflows/push-env.yml@v1.2.24 + uses: codecov/gha-workflows/.github/workflows/push-env.yml@v1.2.26 secrets: inherit with: environment: staging @@ -71,7 +73,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.24 + uses: codecov/gha-workflows/.github/workflows/push-env.yml@v1.2.26 secrets: inherit with: environment: production @@ -82,7 +84,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.24 + uses: codecov/gha-workflows/.github/workflows/self-hosted.yml@v1.2.26 with: push_rolling: true repo: ${{ vars.CODECOV_IMAGE_V2 || 'codecov/self-hosted-worker' }}