From 243d10940182b42779fc58210e4c3c3ae4cd820c Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 13 Sep 2025 12:48:35 +0000 Subject: [PATCH 1/2] chore(deps): update dependency ubuntu to v24 --- .github/workflows/python-app.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/python-app.yaml b/.github/workflows/python-app.yaml index 776737e41..2b8197c6a 100644 --- a/.github/workflows/python-app.yaml +++ b/.github/workflows/python-app.yaml @@ -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 @@ -59,7 +59,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: @@ -160,7 +160,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: @@ -237,7 +237,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: @@ -314,7 +314,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 From 78c13a5741a3c41e29d00a7d98214aaf8cc4c039 Mon Sep 17 00:00:00 2001 From: FBumann <117816358+FBumann@users.noreply.github.com> Date: Sat, 13 Sep 2025 17:51:56 +0200 Subject: [PATCH 2/2] Remove Ubuntu latest --- .github/workflows/python-app.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python-app.yaml b/.github/workflows/python-app.yaml index 2b8197c6a..dd6257ee7 100644 --- a/.github/workflows/python-app.yaml +++ b/.github/workflows/python-app.yaml @@ -89,7 +89,7 @@ jobs: security: name: Security Scan - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 needs: lint steps: - name: Check out code @@ -125,7 +125,7 @@ jobs: create-release: name: Create GitHub Release - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 permissions: contents: write needs: [lint, test, security]