diff --git a/src/reporter/ci-providers/github-workflows/lifter-test.js b/src/reporter/ci-providers/github-workflows/lifter-test.js index a21e0706..24575be0 100644 --- a/src/reporter/ci-providers/github-workflows/lifter-test.js +++ b/src/reporter/ci-providers/github-workflows/lifter-test.js @@ -60,7 +60,7 @@ suite('github workflow lifter', () => { ...otherTopLevelProperties, jobs: { ...otherJobs, - verify: {...otherVerifyProperties, steps: [...existingVerifySteps, {uses: 'codecov/codecov-action@v2'}]} + verify: {...otherVerifyProperties, steps: [...existingVerifySteps, {uses: 'codecov/codecov-action@v3'}]} } }) ); @@ -73,7 +73,7 @@ suite('github workflow lifter', () => { ...(any.simpleObject()), verify: { ...(any.simpleObject()), - steps: [...any.listOf(any.simpleObject), {uses: 'codecov/codecov-action@v2'}] + steps: [...any.listOf(any.simpleObject), {uses: 'codecov/codecov-action@v3'}] } } })); @@ -106,7 +106,7 @@ suite('github workflow lifter', () => { ...otherTopLevelProperties, jobs: { ...otherJobs, - verify: {...otherVerifyProperties, steps: [...otherVerifySteps, {uses: 'codecov/codecov-action@v2'}]} + verify: {...otherVerifyProperties, steps: [...otherVerifySteps, {uses: 'codecov/codecov-action@v3'}]} } }) ); diff --git a/src/reporter/ci-providers/github-workflows/lifter.js b/src/reporter/ci-providers/github-workflows/lifter.js index 85e412b5..f4871905 100644 --- a/src/reporter/ci-providers/github-workflows/lifter.js +++ b/src/reporter/ci-providers/github-workflows/lifter.js @@ -27,7 +27,7 @@ export async function lift({projectRoot}) { ...workflowDetails.jobs, verify: { ...workflowDetails.jobs.verify, - steps: [...stepsWithLegacyReportingRemoved, {uses: 'codecov/codecov-action@v2'}] + steps: [...stepsWithLegacyReportingRemoved, {uses: 'codecov/codecov-action@v3'}] } } })