Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/backend-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

jobs:
check-migrations:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
defaults:
run:
working-directory: backend
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/backend-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:

jobs:
unit-tests:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
defaults:
run:
working-directory: backend
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ env:

jobs:
create-db:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
defaults:
run:
working-directory: ./infrastructure/applications
Expand Down Expand Up @@ -195,7 +195,7 @@ jobs:
platforms: linux/arm64

terraform:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
needs: [build-and-push-arm-service, build-pretix, create-db]
environment:
name: ${{ fromJSON('["pastaporto", "production"]')[github.ref == 'refs/heads/main'] }}
Expand Down Expand Up @@ -229,7 +229,7 @@ jobs:
AWS_DEFAULT_REGION: eu-central-1

wait-aws-update:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
needs: [terraform]
steps:
- name: Check health status
Expand Down Expand Up @@ -327,7 +327,7 @@ jobs:
GIT_HASH=${{ steps.git.outputs.githash }}

deploy-fe:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
needs: [build-fe]
environment:
name: ${{ fromJSON('["pastaporto", "production"]')[github.ref == 'refs/heads/main'] }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/frontend-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:

jobs:
lint:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
defaults:
run:
working-directory: ./frontend
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/global-terraform-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ env:

jobs:
apply-changes:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
defaults:
run:
working-directory: ./infrastructure/global
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/global-terraform-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ env:

jobs:
lint:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/slash-commands.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

jobs:
slash-command-dispatch:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/github-script@v3
id: get-pr
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/terminate-staging-env.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ env:

jobs:
terminate-env:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
defaults:
run:
working-directory: ./infrastructure/applications
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/terraform-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ env:
jobs:
tfsec:
name: TFSec
runs-on: ubuntu-latest
runs-on: ubuntu-24.04

permissions:
contents: read
Expand All @@ -27,7 +27,7 @@ jobs:
github_token: ${{ github.token }}

lint:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04

steps:
- uses: actions/checkout@v4
Expand Down
Loading