From a3d41b38c5d795620bbcde23e298e261e62d9737 Mon Sep 17 00:00:00 2001 From: Ajinkya Date: Fri, 3 Jan 2025 16:37:16 +0530 Subject: [PATCH] using ubuntu-22.04 for running staging and prod workflows --- .github/workflows/prod.yml | 2 +- .github/workflows/staging.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/prod.yml b/.github/workflows/prod.yml index c0aa1ecfe2..3c0ad4600f 100644 --- a/.github/workflows/prod.yml +++ b/.github/workflows/prod.yml @@ -33,7 +33,7 @@ jobs: # This workflow contains a single job called "build" build: # The type of runner that the job will run on - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 # Steps represent a sequence of tasks that will be executed as part of the job steps: diff --git a/.github/workflows/staging.yml b/.github/workflows/staging.yml index 02920d5ba9..4917be0eab 100644 --- a/.github/workflows/staging.yml +++ b/.github/workflows/staging.yml @@ -13,7 +13,7 @@ concurrency: jobs: build: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 outputs: IMAGE_TAG: ${{ steps.docker_tag.outputs.IMAGE_TAG }} steps: