diff --git a/.github/workflows/_deploy-container.yml b/.github/workflows/_deploy-container.yml index 8f5b99521..05a879f2c 100644 --- a/.github/workflows/_deploy-container.yml +++ b/.github/workflows/_deploy-container.yml @@ -25,7 +25,7 @@ on: jobs: stage: name: Staging - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 # environment: "staging" # Manual approval disabled if: ${{ vars.STAGING_CLUSTER_ENABLED == 'true' && github.ref == 'refs/heads/main' }} env: @@ -101,7 +101,7 @@ jobs: name: Production needs: stage environment: "production" # Force a manual approval - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 if: ${{ vars.PRODUCTION_CLUSTER1_ENABLED == 'true' && github.ref == 'refs/heads/main' }} env: UNIQUE_PREFIX: ${{ vars.UNIQUE_PREFIX }} diff --git a/.github/workflows/_deploy-infrastructure.yml b/.github/workflows/_deploy-infrastructure.yml index a9581f3cf..6aa72da60 100644 --- a/.github/workflows/_deploy-infrastructure.yml +++ b/.github/workflows/_deploy-infrastructure.yml @@ -46,7 +46,7 @@ on: jobs: plan: name: "Planning" - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 steps: - name: Checkout Code uses: actions/checkout@v4 @@ -78,7 +78,7 @@ jobs: if: ${{ inputs.deployment_enabled == 'true' && github.ref == 'refs/heads/main' }} needs: plan environment: "${{ inputs.github_environment }}" - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 steps: - name: Checkout Code uses: actions/checkout@v4 diff --git a/.github/workflows/account-management.yml b/.github/workflows/account-management.yml index c4b30fb2c..ca11898b7 100644 --- a/.github/workflows/account-management.yml +++ b/.github/workflows/account-management.yml @@ -30,7 +30,7 @@ permissions: jobs: build-and-test: name: Build and Test - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 outputs: version: ${{ steps.generate_version.outputs.version }} @@ -141,7 +141,7 @@ jobs: code-style-and-linting: name: Code Style and Linting if: github.ref != 'refs/heads/main' - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 steps: - name: Checkout code diff --git a/.github/workflows/app-gateway.yml b/.github/workflows/app-gateway.yml index 97ede43d0..05d03858b 100644 --- a/.github/workflows/app-gateway.yml +++ b/.github/workflows/app-gateway.yml @@ -28,7 +28,7 @@ permissions: jobs: build-and-test: name: Build and Test - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 outputs: version: ${{ steps.generate_version.outputs.version }} @@ -89,7 +89,7 @@ jobs: code-style-and-linting: name: Code Style and Linting if: github.ref != 'refs/heads/main' - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 steps: - name: Checkout code diff --git a/.github/workflows/back-office.yml b/.github/workflows/back-office.yml index 36e146902..62df08a4c 100644 --- a/.github/workflows/back-office.yml +++ b/.github/workflows/back-office.yml @@ -30,7 +30,7 @@ permissions: jobs: build-and-test: name: Build and Test - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 outputs: version: ${{ steps.generate_version.outputs.version }} @@ -141,7 +141,7 @@ jobs: code-style-and-linting: name: Code Style and Linting if: github.ref != 'refs/heads/main' - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 steps: - name: Checkout code diff --git a/.github/workflows/validate-pull-request-conventions.yml b/.github/workflows/validate-pull-request-conventions.yml index 79ba3be95..9e54fade4 100644 --- a/.github/workflows/validate-pull-request-conventions.yml +++ b/.github/workflows/validate-pull-request-conventions.yml @@ -11,7 +11,7 @@ permissions: jobs: check-conventions: name: Validate Pull Request and Git Conventions - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 steps: - name: Checkout code