Skip to content

Commit a988359

Browse files
committed
Update github package workflow
1 parent c20a09f commit a988359

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

Diff for: .github/workflows/python-package.yml

+5-4
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ jobs:
1616
python-version: ["3.9", "3.10", "3.11"]
1717

1818
steps:
19-
- uses: actions/checkout@v2
19+
- uses: actions/checkout@v4
2020
- name: Set up Python ${{ matrix.python-version }}
21-
uses: actions/setup-python@v2
21+
uses: actions/setup-python@v5
2222
with:
2323
python-version: ${{ matrix.python-version }}
2424
- name: Install dependencies
@@ -44,7 +44,8 @@ jobs:
4444
run: |
4545
pytest --cov=tmdbsimple --cov-report term-missing --cov-report=xml
4646
- name: Upload coverage to Codecov
47-
uses: codecov/codecov-action@v1
47+
uses: codecov/codecov-action@v4
4848
with:
49-
file: ./coverage.xml
49+
files: ./coverage.xml
5050
name: codecov-tmdbsimple
51+
# token: ${{ secrets.CODECOV_TOKEN }} # commented out to see if works without token

0 commit comments

Comments
 (0)