Skip to content

Commit d787ca8

Browse files
committed
Update to the latest github action versions
I've been away from this project from a while and various github actions have been "sunset" or updated. Lets use the latest and greatest.
1 parent ec3e649 commit d787ca8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ jobs:
1515
python-version: ['3.9', '3.10', '3.11']
1616

1717
steps:
18-
- uses: actions/checkout@v2
18+
- uses: actions/checkout@v3
1919
- name: Set up Python ${{ matrix.python-version }}
20-
uses: actions/setup-python@v2
20+
uses: actions/setup-python@v4
2121
with:
2222
python-version: ${{ matrix.python-version }}
2323
- name: Install dependencies
@@ -30,7 +30,7 @@ jobs:
3030
coverage run -m pytest -v && coverage xml
3131
- name: Upload coverage to Codecov
3232
if: ${{ matrix.python-version == '3.11' }}
33-
uses: codecov/codecov-action@v1
33+
uses: codecov/codecov-action@v3
3434
with:
3535
token: ${{ secrets.CODECOV_TOKEN }}
3636
fail_ci_if_error: true

0 commit comments

Comments
 (0)