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