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
2 changes: 1 addition & 1 deletion .github/workflows/big_endian.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
sudo apt install -y ninja-build gcc-${TOOLCHAIN_NAME} g++-${TOOLCHAIN_NAME} gfortran-${TOOLCHAIN_NAME}

- name: Cache docker container
uses: actions/cache@v4
uses: actions/cache@v5
id: container-cache
with:
path: ~/docker_${{ matrix.BUILD_PROP[1] }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
python -m cibuildwheel --output-dir wheelhouse
working-directory: ./quaddtype

- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v6
with:
path: ./quaddtype/wheelhouse/*.whl
name: wheels-linux
Expand Down Expand Up @@ -125,7 +125,7 @@ jobs:
python -m cibuildwheel --output-dir wheelhouse
working-directory: ./quaddtype

- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v6
with:
path: ./quaddtype/wheelhouse/*.whl
name: wheels-${{ matrix.os }}
Expand Down Expand Up @@ -185,7 +185,7 @@ jobs:
if (-not (Test-Path wheelhouse/*.whl)) { throw "Wheel was not created" }
working-directory: ./quaddtype

- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v6
with:
path: ./quaddtype/wheelhouse/*.whl
name: wheels-windows-${{ matrix.architecture }}
Expand Down Expand Up @@ -222,7 +222,7 @@ jobs:
working-directory: ./quaddtype

- name: Upload SDist artifact
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: sdist
path: ./quaddtype/dist/*.tar.gz
Expand All @@ -248,7 +248,7 @@ jobs:

steps:
- name: Download all workflow run artifacts
uses: actions/download-artifact@v6
uses: actions/download-artifact@v7
with:
pattern: "*"
path: dist
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/typecheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
steps:
- uses: actions/checkout@v6

- uses: astral-sh/setup-uv@v7.1.5
- uses: astral-sh/setup-uv@v7.1.6
with:
activate-environment: true
python-version: "3.11"
Expand Down
Loading