Skip to content

Commit 20fdf72

Browse files
committed
ci: Enforce jammy base for workflows relying on 'sg'
1 parent 6d2f3c2 commit 20fdf72

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/ci-checks.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ on:
66
jobs:
77
checks:
88
name: Code checks
9-
runs-on: ubuntu-latest
9+
runs-on: ubuntu-22.04
1010
timeout-minutes: 5
1111
strategy:
1212
fail-fast: true
1313
matrix:
1414
python-version:
15-
- '3.9'
16-
- '3.10'
15+
- "3.9"
16+
- "3.10"
1717
steps:
1818
- id: checkout
1919
name: Checkout repo

.github/workflows/ci-tests.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Run Tests
22

33
on:
44
schedule:
5-
- cron: '53 0 * * *' # Daily at 00:53 UTC
5+
- cron: "53 0 * * *" # Daily at 00:53 UTC
66
workflow_call:
77

88
jobs:
@@ -11,14 +11,14 @@ jobs:
1111

1212
test:
1313
name: Unit and Integration Tests
14-
runs-on: ubuntu-latest
14+
runs-on: ubuntu-22.04
1515
timeout-minutes: 60
1616
strategy:
1717
fail-fast: true
1818
matrix:
1919
python-version:
20-
- '3.9'
21-
- '3.10'
20+
- "3.9"
21+
- "3.10"
2222
needs:
2323
- checks
2424
steps:

0 commit comments

Comments
 (0)