Skip to content

Commit

Permalink
ci: migrate ubuntu-latest to ubuntu-24.04
Browse files Browse the repository at this point in the history
  • Loading branch information
nh13 authored Dec 4, 2024
1 parent 385e1b1 commit a021c82
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
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

0 comments on commit a021c82

Please sign in to comment.