Skip to content

Commit bbbfd24

Browse files
deps: update codecov/codecov-action action to v4 (#80)
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [codecov/codecov-action](https://togithub.com/codecov/codecov-action) | action | major | `v3` -> `v4` | --- ### Release Notes <details> <summary>codecov/codecov-action (codecov/codecov-action)</summary> ### [`v4`](https://togithub.com/codecov/codecov-action/compare/v3...v4) [Compare Source](https://togithub.com/codecov/codecov-action/compare/v3...v4) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/ansible-community/molecule-hetznercloud). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xNzMuMCIsInVwZGF0ZWRJblZlciI6IjM3LjE3My4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: jo <[email protected]>
1 parent 5d6a23d commit bbbfd24

File tree

2 files changed

+11
-6
lines changed

2 files changed

+11
-6
lines changed

.github/workflows/test.yml

+8-6
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,13 @@ on:
66
pull_request:
77

88
jobs:
9-
test:
9+
unit:
1010
runs-on: ubuntu-latest
1111

1212
strategy:
1313
matrix:
1414
python-version: ["3.9", "3.10", "3.11", "3.12"]
1515

16-
name: Python ${{ matrix.python-version }}
1716
steps:
1817
- uses: actions/checkout@v4
1918

@@ -31,11 +30,13 @@ jobs:
3130
run: make test ARGS="--cov --cov-config=pyproject.toml --cov-report=xml"
3231

3332
- name: Upload coverage reports to Codecov
34-
uses: codecov/codecov-action@v3
33+
uses: codecov/codecov-action@v4
3534
with:
35+
token: ${{ secrets.CODECOV_TOKEN }}
3636
files: coverage.xml
37+
flags: unit
3738

38-
integration:
39+
e2e:
3940
runs-on: ubuntu-latest
4041

4142
strategy:
@@ -45,7 +46,6 @@ jobs:
4546
permissions:
4647
id-token: write
4748

48-
name: Integration Python ${{ matrix.python-version }}
4949
steps:
5050
- uses: hetznercloud/tps-action@main
5151
with:
@@ -70,6 +70,8 @@ jobs:
7070
ANSIBLE_FORCE_COLOR: "1"
7171

7272
- name: Upload coverage reports to Codecov
73-
uses: codecov/codecov-action@v3
73+
uses: codecov/codecov-action@v4
7474
with:
75+
token: ${{ secrets.CODECOV_TOKEN }}
7576
files: coverage.xml
77+
flags: e2e

codecov.yml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
coverage:
2+
status:
3+
patch: false

0 commit comments

Comments
 (0)