diff --git a/src/pages/RepoPage/CoverageOnboarding/GitHubActions/WorkflowYMLStep.tsx b/src/pages/RepoPage/CoverageOnboarding/GitHubActions/WorkflowYMLStep.tsx index c2c1dd6905..a2d2f55b70 100644 --- a/src/pages/RepoPage/CoverageOnboarding/GitHubActions/WorkflowYMLStep.tsx +++ b/src/pages/RepoPage/CoverageOnboarding/GitHubActions/WorkflowYMLStep.tsx @@ -33,15 +33,17 @@ function WorkflowYMLStep({ owner, }) - const workflowYMLConfig = `- name: Upload coverage reports to Codecov - uses: codecov/codecov-action@v5 - with: - token: \${{ secrets.CODECOV_TOKEN }}${ - orgUploadToken - ? ` - slug: ${owner}/${repo}` - : '' - }` + // prettier-ignore + const actionString = + `- name: Upload coverage reports to Codecov + uses: codecov/codecov-action@v4.0.1 + with: + token: \${{ secrets.CODECOV_TOKEN }}${ + orgUploadToken + ? ` + slug: ${owner}/${repo}` + : '' + }` return (