Skip to content

Commit

Permalink
Update all GitHub runners to use Ubuntu 24.04
Browse files Browse the repository at this point in the history
  • Loading branch information
tjementum committed Jan 9, 2025
1 parent 5cd1554 commit 2d6e870
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/_deploy-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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 }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/_deploy-infrastructure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/account-management.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}

Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/app-gateway.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}

Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/back-office.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}

Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate-pull-request-conventions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 2d6e870

Please sign in to comment.