Skip to content
Closed
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
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
fetch-depth: 0 # required for setuptools_scm
- name: Build sdist and temporary wheel
run: pipx run build
- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v6
with:
name: sdist
path: dist/*.tar.gz
Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:
env:
CIBW_BUILD: "cp*-manylinux_x86_64 cp3*-win_amd64 cp3*-macosx_x86_64 cp3*-macosx_arm64"
CIBW_SKIP: "cp314*"
- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v6
with:
name: wheels-${{ matrix.os }}
path: wheelhouse/*.whl
Expand All @@ -88,11 +88,11 @@ jobs:
timeout-minutes: 10
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v6
- uses: actions/download-artifact@v7
with:
name: sdist
path: dist/
- uses: actions/download-artifact@v6
- uses: actions/download-artifact@v7
with:
pattern: wheels-*
path: dist/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pyinstaller.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
run: dist/cutadapt.exe --version
- name: Test multicore
run: ( echo ">read" && echo "ACGT" ) | dist/cutadapt.exe -j 2 --quiet -
- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v6
with:
name: cutadapt-exe
path: dist/cutadapt.exe