Skip to content

Commit 7aa6c33

Browse files
dependabot[bot]catanzaromj
authored andcommitted
fix(ci): bump checkout 5 to 6, skip codecov updates for bot
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> fix(ci): skip codecov upload for dependabot PRs
1 parent 2d50e66 commit 7aa6c33

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/python-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616

1717
steps:
18-
- uses: actions/checkout@v5
18+
- uses: actions/checkout@v6
1919

2020
- name: Set up Python 3.12
2121
uses: actions/setup-python@v6
@@ -53,7 +53,7 @@ jobs:
5353
pytest --cov=persim --cov-report=xml
5454
5555
- name: Upload coverage results
56-
if: matrix.python-version == '3.12'
56+
if: matrix.python-version == '3.12' && github.actor != 'dependabot[bot]'
5757
uses: codecov/codecov-action@v5
5858
with:
5959
token: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)