Skip to content

Commit

Permalink
Merge pull request #838 from form8ion/renovate/master-codecov-codecov…
Browse files Browse the repository at this point in the history
…-action-5.x

chore(deps): update dependency codecov/codecov-action to v5.0.2 (master)
  • Loading branch information
renovate[bot] authored Nov 15, 2024
2 parents 6039e75 + 9cf2cfa commit b267152
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/node-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
node-version-file: .nvmrc
- run: npm clean-install
- run: npm test
- uses: codecov/codecov-action@968872560f81e7bdde9272853e65f2507c0eca7c # v5.0.0
- uses: codecov/codecov-action@5c47607acb93fed5485fdbf7232e8a31425f672a # v5.0.2
verify-matrix:
runs-on: ubuntu-latest
strategy:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ import any from '@travi/any';
import {findCodecovActionIn, removeCodecovActionFrom, scaffold} from './codecov-action.js';

suite('codecov action', () => {
const codecovAction = {...any.simpleObject(), uses: 'codecov/codecov-action@v5'};
const codecovAction = {...any.simpleObject(), uses: 'codecov/codecov-action@v5.0.2'};

suite('scaffold', () => {
test('that the codecov action is scaffolded', () => {
assert.deepEqual(scaffold(), {uses: 'codecov/codecov-action@v5'});
assert.deepEqual(scaffold(), {uses: 'codecov/codecov-action@v5.0.2'});
});
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ export function removeCodecovActionFrom(steps) {
}

export function scaffold() {
return {uses: 'codecov/codecov-action@v5'};
return {uses: 'codecov/codecov-action@v5.0.2'};
}

0 comments on commit b267152

Please sign in to comment.