Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump setup-python to v5, setup-qemu-action to v3 #241

Merged
merged 1 commit into from
Sep 12, 2024
Merged
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
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ jobs:

- name: Set up QEMU
if: matrix.config.python-arch == 'aarch64'
uses: docker/setup-qemu-action@v1
uses: docker/setup-qemu-action@v3

- name: Build wheels (Linux)
if: matrix.config.os-name == 'linux'
Expand All @@ -188,7 +188,7 @@ jobs:

- name: Setup Python (Windows)
if: matrix.config.os-name == 'windows'
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.config.python-version }}

Expand Down Expand Up @@ -353,7 +353,7 @@ jobs:

- name: Set up QEMU
if: matrix.config.python-arch == 'aarch64'
uses: docker/setup-qemu-action@v1
uses: docker/setup-qemu-action@v3

- name: Test wheel (Linux)
if: matrix.config.os-name == 'linux'
Expand All @@ -364,7 +364,7 @@ jobs:

- name: Setup Python (Windows)
if: matrix.config.os-name == 'windows'
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.config.python-version }}

Expand All @@ -378,7 +378,7 @@ jobs:

- name: Setup Python (macOS)
if: matrix.config.os-name == 'mac'
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.config.python-version }}

Expand All @@ -398,7 +398,7 @@ jobs:
- uses: actions/checkout@v4

- name: Setup Python
uses: actions/setup-python@v1
uses: actions/setup-python@v5
with:
python-version: '3.9'

Expand Down Expand Up @@ -438,7 +438,7 @@ jobs:
path: dist

- name: Setup Python
uses: actions/setup-python@v1
uses: actions/setup-python@v5

- name: Upload wheels to PyPI
run: |
Expand Down