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

ci: migrate ubuntu-latest to ubuntu-24.04 #96

Merged
merged 1 commit into from
Dec 4, 2024
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
10 changes: 5 additions & 5 deletions .github/workflows/publish_prymer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ env:

jobs:
on-main-branch-check:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
outputs:
on_main: ${{ steps.contains_tag.outputs.retval }}
steps:
Expand Down Expand Up @@ -37,7 +37,7 @@ jobs:
build-sdist:
name: build source distribution
needs: tests
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
path: dist/*.tar.gz

publish-to-pypi:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
needs: [build-wheels, build-sdist]
environment: pypi
permissions:
Expand All @@ -91,7 +91,7 @@ jobs:
verbose: true

make-changelog:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
needs: publish-to-pypi
outputs:
release_body: ${{ steps.git-cliff.outputs.content }}
Expand All @@ -112,7 +112,7 @@ jobs:
GITHUB_REPO: ${{ github.repository }}

make-github-release:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
environment: github
permissions:
contents: write
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ env:

jobs:
Tests:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
strategy:
matrix:
PYTHON_VERSION: ["3.11", "3.12"]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
jobs:
build-wheels:
name: Build wheels for ${{ matrix.python }}
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
strategy:
matrix:
python: ["3.11", "3.12"]
Expand Down
Loading