Skip to content

Upgrade to Ubuntu 24.04 and arm64 runners. #16

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

Merged
merged 1 commit into from
Jun 22, 2025
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/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ on:

jobs:
preflight:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04-arm
outputs:
image_base: ${{ steps.details.outputs.image_base }}
image_tag: ${{ steps.preflight.outputs.image_tag }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/delete-pr-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

jobs:
clean-image:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04-arm
steps:
- id: details
uses: kpfleming/composite-actions/image-details@v3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

jobs:
preflight:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04-arm
outputs:
image_base: ${{ steps.details.outputs.image_base }}
need_lint: ${{ steps.preflight.outputs.need_lint == 'true' }}
Expand All @@ -27,7 +27,7 @@ jobs:
lint_paths: workflow-support/lint_paths.yml
lint:
if: needs.preflight.outputs.need_lint == 'true'
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04-arm
needs:
- preflight
container:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pypi-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ permissions:
jobs:
build-package:
name: Build and verify package
runs-on: ubuntu-latest
runs-on: ubuntu-24.04-arm

steps:
- uses: actions/checkout@v4
Expand All @@ -32,7 +32,7 @@ jobs:
name: Publish released package to PyPI
environment: release-pypi
if: github.event.action == 'published'
runs-on: ubuntu-latest
runs-on: ubuntu-24.04-arm
needs: build-package

steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ on:
jobs:
test:
if: inputs.if
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04-arm
container:
image: ${{ inputs.image }}
steps:
Expand Down