diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 935f1b7b5..72d81dc57 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,7 +2,7 @@ name: CI on: [push] jobs: python-tests: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 services: db: @@ -141,7 +141,7 @@ jobs: file: ./coverage.xml javascript-tests: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/production.yml b/.github/workflows/production.yml index 1e238f05d..ac99dfec8 100644 --- a/.github/workflows/production.yml +++ b/.github/workflows/production.yml @@ -10,7 +10,7 @@ on: jobs: # runs if CI workflow was successful OR if this was manually triggered on-success: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 if: > github.event_name == 'workflow_dispatch' || github.event.workflow_run.conclusion == 'success' @@ -26,7 +26,7 @@ jobs: branch: release # runs ONLY on a failure of the CI workflow on-failure: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 if: > github.event_name == 'workflow_dispatch' || github.event.workflow_run.conclusion == 'failure' diff --git a/.github/workflows/release-candiate.yml b/.github/workflows/release-candiate.yml index 5733e99b4..5b80d19fd 100644 --- a/.github/workflows/release-candiate.yml +++ b/.github/workflows/release-candiate.yml @@ -10,7 +10,7 @@ on: jobs: # runs if CI workflow was successful OR if this was manually triggered on-success: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 if: > github.event_name == 'workflow_dispatch' || github.event.workflow_run.conclusion == 'success' @@ -26,7 +26,7 @@ jobs: branch: release-candidate # runs ONLY on a failure of the CI workflow on-failure: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 if: > github.event_name == 'workflow_dispatch' || github.event.workflow_run.conclusion == 'failure'