From 60ab23f0083efdcda5f97aad8ea3f65686d59402 Mon Sep 17 00:00:00 2001 From: Joe Previte Date: Mon, 5 Dec 2022 15:41:08 -0700 Subject: [PATCH] chore: pin all jobs in build to ubuntu 20.04 --- .github/workflows/build.yaml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index edcb981d1..0ba456df3 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -24,7 +24,7 @@ concurrency: jobs: prettier: name: Format with Prettier - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 timeout-minutes: 5 steps: - name: Checkout repo @@ -37,7 +37,7 @@ jobs: doctoc: name: Doctoc markdown files - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 timeout-minutes: 5 steps: - name: Checkout repo @@ -66,7 +66,7 @@ jobs: lint-helm: name: Lint Helm chart - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 timeout-minutes: 5 steps: - name: Checkout repo @@ -97,7 +97,7 @@ jobs: lint-ts: name: Lint TypeScript files - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 timeout-minutes: 5 steps: - name: Checkout repo @@ -244,7 +244,7 @@ jobs: # Only run if PR comes from base repo or event is not a PR # Reason: forks cannot access secrets and this will always fail if: github.event.pull_request.head.repo.full_name == github.repository || github.event_name != 'pull_request' - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 steps: - name: Checkout repo uses: actions/checkout@v3 @@ -295,7 +295,7 @@ jobs: test-e2e: name: Run e2e tests needs: build - runs-on: ubuntu-22.04 + runs-on: ubuntu-20.04 timeout-minutes: 25 steps: - name: Checkout repo @@ -351,7 +351,7 @@ jobs: test-e2e-proxy: name: Run e2e tests behind proxy needs: build - runs-on: ubuntu-22.04 + runs-on: ubuntu-20.04 timeout-minutes: 25 steps: - name: Checkout repo