Skip to content

Commit 60ab23f

Browse files
committed
chore: pin all jobs in build to ubuntu 20.04
1 parent 40396cc commit 60ab23f

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/build.yaml

+7-7
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ concurrency:
2424
jobs:
2525
prettier:
2626
name: Format with Prettier
27-
runs-on: ubuntu-latest
27+
runs-on: ubuntu-20.04
2828
timeout-minutes: 5
2929
steps:
3030
- name: Checkout repo
@@ -37,7 +37,7 @@ jobs:
3737

3838
doctoc:
3939
name: Doctoc markdown files
40-
runs-on: ubuntu-latest
40+
runs-on: ubuntu-20.04
4141
timeout-minutes: 5
4242
steps:
4343
- name: Checkout repo
@@ -66,7 +66,7 @@ jobs:
6666

6767
lint-helm:
6868
name: Lint Helm chart
69-
runs-on: ubuntu-latest
69+
runs-on: ubuntu-20.04
7070
timeout-minutes: 5
7171
steps:
7272
- name: Checkout repo
@@ -97,7 +97,7 @@ jobs:
9797

9898
lint-ts:
9999
name: Lint TypeScript files
100-
runs-on: ubuntu-latest
100+
runs-on: ubuntu-20.04
101101
timeout-minutes: 5
102102
steps:
103103
- name: Checkout repo
@@ -244,7 +244,7 @@ jobs:
244244
# Only run if PR comes from base repo or event is not a PR
245245
# Reason: forks cannot access secrets and this will always fail
246246
if: github.event.pull_request.head.repo.full_name == github.repository || github.event_name != 'pull_request'
247-
runs-on: ubuntu-latest
247+
runs-on: ubuntu-20.04
248248
steps:
249249
- name: Checkout repo
250250
uses: actions/checkout@v3
@@ -295,7 +295,7 @@ jobs:
295295
test-e2e:
296296
name: Run e2e tests
297297
needs: build
298-
runs-on: ubuntu-22.04
298+
runs-on: ubuntu-20.04
299299
timeout-minutes: 25
300300
steps:
301301
- name: Checkout repo
@@ -351,7 +351,7 @@ jobs:
351351
test-e2e-proxy:
352352
name: Run e2e tests behind proxy
353353
needs: build
354-
runs-on: ubuntu-22.04
354+
runs-on: ubuntu-20.04
355355
timeout-minutes: 25
356356
steps:
357357
- name: Checkout repo

0 commit comments

Comments
 (0)