Skip to content

Commit b4dcee4

Browse files
committed
ci: latest actions
1 parent e367d5f commit b4dcee4

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@ jobs:
2525
python-version: '3.13'
2626

2727
steps:
28-
- uses: actions/checkout@v4
28+
- &checkout
29+
uses: actions/checkout@v5
2930
- uses: actions/setup-python@v5
3031
with:
3132
python-version: ${{ matrix.python-version }}
3233

3334
- run: pip install .[full,tests,lint]
3435

3536
- run: flake8
36-
3737
- run: mypy
3838

3939
- run: pytest
@@ -48,7 +48,7 @@ jobs:
4848
python-version: ["3.13"]
4949

5050
steps:
51-
- uses: actions/checkout@v4
51+
- *checkout
5252

5353
- name: Set up Python
5454
uses: actions/setup-python@v5
@@ -73,7 +73,6 @@ jobs:
7373
# run: pytest --cov=src --cov-report=xml --cov-append
7474

7575
- name: Upload coverage
76-
uses: codecov/codecov-action@v3
76+
uses: codecov/codecov-action@v5
7777
with:
78-
file: ./coverage.xml
7978
name: Python ${{ matrix.python-version }}

.github/workflows/ci_stdlib_only.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
python-version: '3.13'
2626

2727
steps:
28-
- uses: actions/checkout@v4
28+
- uses: actions/checkout@v5
2929
- uses: actions/setup-python@v5
3030
with:
3131
python-version: ${{ matrix.python-version }}

0 commit comments

Comments
 (0)