Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
steps:
- uses: actions/checkout@v6
- uses: pypa/cibuildwheel@v3.3.1
- uses: actions/upload-artifact@v6
- uses: actions/upload-artifact@v7
with:
name: dist-wheels-${{ matrix.os }}
path: ./wheelhouse/*.whl
Expand All @@ -41,7 +41,7 @@ jobs:
run: sudo apt-get install pkg-config libgpgme-dev
- name: Build sdist
run: pipx run build --sdist
- uses: actions/upload-artifact@v6
- uses: actions/upload-artifact@v7
with:
name: dist-sdist
path: dist/*.tar.gz
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- uses: pypa/cibuildwheel@v3.3.1
env:
CIBW_SKIP: "cp31[012]-* *-musllinux_*"
- uses: actions/upload-artifact@v6
- uses: actions/upload-artifact@v7
with:
name: wheels-${{ matrix.os }}
path: ./wheelhouse/*.whl
Expand Down Expand Up @@ -65,7 +65,7 @@ jobs:
echo '```' >> $GITHUB_STEP_SUMMARY
lcov --summary lcov/combined.lcov | grep -v '^Reading tracefile' >> $GITHUB_STEP_SUMMARY
echo '```' >> $GITHUB_STEP_SUMMARY
- uses: actions/upload-artifact@v6
- uses: actions/upload-artifact@v7
with:
name: coverage
path: ./coverage
Expand Down