Skip to content

Commit

Permalink
ci: use ubuntu-24.04 instead of latest
Browse files Browse the repository at this point in the history
  • Loading branch information
sergiud committed Dec 9, 2024
1 parent b0771c8 commit 73b9310
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:

build-sdist:
name: Build sdist
runs-on: ubuntu-latest
runs-on: ubuntu-24.04

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -89,7 +89,7 @@ jobs:
publish-to-testpypi:
name: Publish to TestPyPI
if: false # Used for testing purposes only, no trigger conditions yet
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
needs:
- build-sdist
- build-wheels
Expand All @@ -115,7 +115,7 @@ jobs:
publish-to-pypi:
name: Publish to PyPI
if: startsWith(github.ref, 'refs/tags/') # only publish to PyPI on tag pushes
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
needs:
- build-sdist
- build-wheels
Expand All @@ -139,7 +139,7 @@ jobs:
deploy-artifacts:
name: Deploy Artifacts
if: startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
needs:
- build-wheels

Expand Down

0 comments on commit 73b9310

Please sign in to comment.