Skip to content

Commit

Permalink
fix(reporter-action): updated the action to v3
Browse files Browse the repository at this point in the history
  • Loading branch information
travi committed Apr 20, 2022
1 parent 78c477a commit 386ae8d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/reporter/ci-providers/github-workflows/lifter-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -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'}]}
}
})
);
Expand All @@ -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'}]
}
}
}));
Expand Down Expand Up @@ -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'}]}
}
})
);
Expand Down
2 changes: 1 addition & 1 deletion src/reporter/ci-providers/github-workflows/lifter.js
Original file line number Diff line number Diff line change
Expand Up @@ -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'}]
}
}
})
Expand Down

0 comments on commit 386ae8d

Please sign in to comment.