From e170df681f593f1de61aa7697439e1de82220680 Mon Sep 17 00:00:00 2001 From: Nafis Zaman Date: Sat, 21 Dec 2024 22:23:44 -0800 Subject: [PATCH] Use Ubuntu 22.04 for all workflows --- .github/workflows/cd-prod.yml | 2 +- .github/workflows/cd-staging.yml | 4 ++-- .github/workflows/ci.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/cd-prod.yml b/.github/workflows/cd-prod.yml index f497e16f..782c4083 100644 --- a/.github/workflows/cd-prod.yml +++ b/.github/workflows/cd-prod.yml @@ -12,7 +12,7 @@ env: jobs: deploy-to-prod: name: Deploy to prod - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - name: Checkout simulator repo diff --git a/.github/workflows/cd-staging.yml b/.github/workflows/cd-staging.yml index 825cbc55..c96a90c1 100644 --- a/.github/workflows/cd-staging.yml +++ b/.github/workflows/cd-staging.yml @@ -28,7 +28,7 @@ concurrency: ${{ github.workflow }} jobs: build-publish: name: Build and publish - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 outputs: image_version: ${{ steps.image_tag.outputs.IMAGE_TAG }} @@ -80,7 +80,7 @@ jobs: deploy-to-staging: name: Deploy to staging - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 needs: build-publish steps: diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b76a349e..b826bce9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,7 +7,7 @@ on: jobs: build: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - name: Checkout Simulator