Skip to content
Merged
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 @@ -49,7 +49,7 @@ jobs:

name: "${{ matrix.BUILD_PROP[0] }}"
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
submodules: recursive
fetch-tags: true
Expand Down
26 changes: 13 additions & 13 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:
name: Build wheels on Linux
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v5

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v6
with:
python-version: ">=3.11.0"

Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
python -m cibuildwheel --output-dir wheelhouse
working-directory: ./quaddtype

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
path: ./quaddtype/wheelhouse/*.whl
name: wheels-linux
Expand All @@ -74,10 +74,10 @@ jobs:
os: [macos-14, macos-15, macos-15-intel]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v5

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v6
with:
python-version: ">=3.11.0"

Expand Down Expand Up @@ -125,7 +125,7 @@ jobs:
python -m cibuildwheel --output-dir wheelhouse
working-directory: ./quaddtype

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
path: ./quaddtype/wheelhouse/*.whl
name: wheels-${{ matrix.os }}
Expand All @@ -139,15 +139,15 @@ jobs:
architecture: [x64]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v5

- name: Setup MSVC
uses: ilammy/msvc-dev-cmd@v1
with:
arch: ${{ matrix.architecture }}

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v6
with:
python-version: ">=3.11.0"
architecture: ${{ matrix.architecture }}
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@v4
- uses: actions/upload-artifact@v5
with:
path: ./quaddtype/wheelhouse/*.whl
name: wheels-windows-${{ matrix.architecture }}
Expand All @@ -194,10 +194,10 @@ jobs:
name: Build SDist
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v5

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v6
with:
python-version: ">=3.11.0"

Expand All @@ -222,7 +222,7 @@ jobs:
working-directory: ./quaddtype

- name: Upload SDist artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
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@v4
uses: actions/download-artifact@v6
with:
pattern: "*"
path: dist
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v5
- name: Setup Python
uses: actions/setup-python@v3
uses: actions/setup-python@v6
with:
python-version: "3.11"
- name: Install build and test dependencies
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/typecheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ jobs:
timeout-minutes: 2

steps:
- uses: actions/checkout@v5.0.0
- uses: actions/checkout@v5

- uses: astral-sh/setup-uv@v6.7.0
- uses: astral-sh/setup-uv@v7.1.1
with:
activate-environment: true
python-version: "3.11"
Expand Down