Skip to content

Commit 5ad9581

Browse files
committed
fix: Deprecated github actions.
1 parent 4a92dc2 commit 5ad9581

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,9 @@ jobs:
6666
- run: poetry run make test
6767

6868
- name: Store test result artifacts
69-
uses: actions/upload-artifact@v3
69+
uses: actions/upload-artifact@v4
7070
with:
71-
path: coverage.xml
71+
path: coverage-${{ matrix.python-version }}-${{ matrix.pytest-asyncio-version }-${{ matrix.sqlalchemy-version }}}.xml
7272

7373
- name: Coveralls
7474
env:
@@ -121,9 +121,9 @@ jobs:
121121
- run: SQLALCHEMY_WARN_20=1 poetry run coverage run -a -m pytest src tests -vv -m 'asyncio'
122122

123123
- name: Store test result artifacts
124-
uses: actions/upload-artifact@v3
124+
uses: actions/upload-artifact@v4
125125
with:
126-
path: coverage.xml
126+
path: coverage-${{ matrix.python-version }}-${{ matrix.pytest-asyncio-version }-${{ matrix.sqlalchemy-version }}}-asyncpg.xml
127127

128128
- name: Coveralls
129129
env:

0 commit comments

Comments
 (0)