Skip to content
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/python-app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ env:

jobs:
lint:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: Check out code
uses: actions/checkout@v5
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:
echo "::endgroup::"

test:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
timeout-minutes: 30
needs: lint # Run tests only after linting passes
strategy:
Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:

security:
name: Security Scan
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs: lint
steps:
- name: Check out code
Expand Down Expand Up @@ -126,7 +126,7 @@ jobs:

create-release:
name: Create GitHub Release
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
permissions:
contents: write
needs: [lint, test, security]
Expand Down Expand Up @@ -167,7 +167,7 @@ jobs:

publish-testpypi:
name: Publish to TestPyPI
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs: [test, create-release] # Run after tests and release creation
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') # Only on tag push
environment:
Expand Down Expand Up @@ -255,7 +255,7 @@ jobs:

publish-pypi:
name: Publish to PyPI
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs: [publish-testpypi] # Only run after TestPyPI publish succeeds
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') # Only on tag push
environment:
Expand Down Expand Up @@ -340,7 +340,7 @@ jobs:

deploy-docs:
name: Deploy Documentation
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
permissions:
contents: write
needs: [publish-pypi] # Deploy docs after successful PyPI publishing
Expand Down