|
@@ -19,7 +19,7 @@ env:
|
|
|
jobs:
|
|
|
files-changed:
|
|
|
name: detect what files changed
|
|
|
- runs-on: ubuntu-22.04
|
|
|
+ runs-on: ubuntu-24.04
|
|
|
timeout-minutes: 3
|
|
|
# Map a step output to a job output
|
|
|
outputs:
|
|
@@ -42,7 +42,7 @@ jobs:
|
|
|
if: needs.files-changed.outputs.api_docs == 'true'
|
|
|
needs: files-changed
|
|
|
name: api docs test
|
|
|
- runs-on: ubuntu-22.04
|
|
|
+ runs-on: ubuntu-24.04
|
|
|
steps:
|
|
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
|
|
|
|
@@ -68,7 +68,7 @@ jobs:
|
|
|
if: needs.files-changed.outputs.backend == 'true'
|
|
|
needs: files-changed
|
|
|
name: backend test
|
|
|
- runs-on: ubuntu-22.04
|
|
|
+ runs-on: ubuntu-24.04
|
|
|
timeout-minutes: 60
|
|
|
permissions:
|
|
|
contents: read
|
|
@@ -132,7 +132,7 @@ jobs:
|
|
|
if: needs.files-changed.outputs.backend == 'true'
|
|
|
needs: files-changed
|
|
|
name: backend migration tests
|
|
|
- runs-on: ubuntu-22.04
|
|
|
+ runs-on: ubuntu-24.04
|
|
|
timeout-minutes: 30
|
|
|
strategy:
|
|
|
matrix:
|
|
@@ -165,7 +165,7 @@ jobs:
|
|
|
if: needs.files-changed.outputs.backend == 'true'
|
|
|
needs: files-changed
|
|
|
name: cli test
|
|
|
- runs-on: ubuntu-22.04
|
|
|
+ runs-on: ubuntu-24.04
|
|
|
timeout-minutes: 10
|
|
|
strategy:
|
|
|
matrix:
|
|
@@ -196,7 +196,7 @@ jobs:
|
|
|
if: needs.files-changed.outputs.backend_dependencies == 'true'
|
|
|
needs: files-changed
|
|
|
name: requirements check
|
|
|
- runs-on: ubuntu-22.04
|
|
|
+ runs-on: ubuntu-24.04
|
|
|
timeout-minutes: 3
|
|
|
steps:
|
|
|
- uses: getsentry/action-github-app-token@d4b5da6c5e37703f8c3b3e43abb5705b46e159cc # v3.0.0
|
|
@@ -229,7 +229,7 @@ jobs:
|
|
|
if: needs.files-changed.outputs.migration_lockfile == 'true'
|
|
|
needs: files-changed
|
|
|
name: check migration
|
|
|
- runs-on: ubuntu-22.04
|
|
|
+ runs-on: ubuntu-24.04
|
|
|
strategy:
|
|
|
matrix:
|
|
|
pg-version: ['14']
|
|
@@ -255,7 +255,7 @@ jobs:
|
|
|
if: needs.files-changed.outputs.backend == 'true'
|
|
|
needs: files-changed
|
|
|
name: monolith-dbs test
|
|
|
- runs-on: ubuntu-22.04
|
|
|
+ runs-on: ubuntu-24.04
|
|
|
timeout-minutes: 20
|
|
|
permissions:
|
|
|
contents: read
|
|
@@ -294,7 +294,7 @@ jobs:
|
|
|
if: needs.files-changed.outputs.backend == 'true'
|
|
|
needs: files-changed
|
|
|
name: backend typing
|
|
|
- runs-on: ubuntu-22.04
|
|
|
+ runs-on: ubuntu-24.04
|
|
|
timeout-minutes: 20
|
|
|
steps:
|
|
|
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
|
@@ -371,7 +371,7 @@ jobs:
|
|
|
name: Backend
|
|
|
# This is necessary since a failed/skipped dependent job would cause this job to be skipped
|
|
|
if: always()
|
|
|
- runs-on: ubuntu-22.04
|
|
|
+ runs-on: ubuntu-24.04
|
|
|
steps:
|
|
|
# If any jobs we depend on fail, we will fail since this is a required check
|
|
|
# NOTE: A timeout is considered a failure
|