Skip to content

Commit 307b478

Browse files
authored
Use ubuntu 24 on CI (#4241)
1 parent 4327192 commit 307b478

File tree

9 files changed

+13
-13
lines changed

9 files changed

+13
-13
lines changed

.github/workflows/backend-checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
jobs:
1111
check-migrations:
12-
runs-on: ubuntu-latest
12+
runs-on: ubuntu-24.04
1313
defaults:
1414
run:
1515
working-directory: backend

.github/workflows/backend-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212

1313
jobs:
1414
unit-tests:
15-
runs-on: ubuntu-latest
15+
runs-on: ubuntu-24.04
1616
defaults:
1717
run:
1818
working-directory: backend

.github/workflows/deploy.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ env:
1313

1414
jobs:
1515
create-db:
16-
runs-on: ubuntu-latest
16+
runs-on: ubuntu-24.04
1717
defaults:
1818
run:
1919
working-directory: ./infrastructure/applications
@@ -195,7 +195,7 @@ jobs:
195195
platforms: linux/arm64
196196

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

231231
wait-aws-update:
232-
runs-on: ubuntu-latest
232+
runs-on: ubuntu-24.04
233233
needs: [terraform]
234234
steps:
235235
- name: Check health status
@@ -327,7 +327,7 @@ jobs:
327327
GIT_HASH=${{ steps.git.outputs.githash }}
328328
329329
deploy-fe:
330-
runs-on: ubuntu-latest
330+
runs-on: ubuntu-24.04
331331
needs: [build-fe]
332332
environment:
333333
name: ${{ fromJSON('["pastaporto", "production"]')[github.ref == 'refs/heads/main'] }}

.github/workflows/frontend-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010

1111
jobs:
1212
lint:
13-
runs-on: ubuntu-latest
13+
runs-on: ubuntu-24.04
1414
defaults:
1515
run:
1616
working-directory: ./frontend

.github/workflows/global-terraform-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ env:
1313

1414
jobs:
1515
apply-changes:
16-
runs-on: ubuntu-latest
16+
runs-on: ubuntu-24.04
1717
defaults:
1818
run:
1919
working-directory: ./infrastructure/global

.github/workflows/global-terraform-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ env:
1111

1212
jobs:
1313
lint:
14-
runs-on: ubuntu-latest
14+
runs-on: ubuntu-24.04
1515

1616
steps:
1717
- uses: actions/checkout@v4

.github/workflows/slash-commands.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66

77
jobs:
88
slash-command-dispatch:
9-
runs-on: ubuntu-latest
9+
runs-on: ubuntu-24.04
1010
steps:
1111
- uses: actions/github-script@v3
1212
id: get-pr

.github/workflows/terminate-staging-env.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ env:
1010

1111
jobs:
1212
terminate-env:
13-
runs-on: ubuntu-latest
13+
runs-on: ubuntu-24.04
1414
defaults:
1515
run:
1616
working-directory: ./infrastructure/applications

.github/workflows/terraform-lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ env:
1212
jobs:
1313
tfsec:
1414
name: TFSec
15-
runs-on: ubuntu-latest
15+
runs-on: ubuntu-24.04
1616

1717
permissions:
1818
contents: read
@@ -27,7 +27,7 @@ jobs:
2727
github_token: ${{ github.token }}
2828

2929
lint:
30-
runs-on: ubuntu-latest
30+
runs-on: ubuntu-24.04
3131

3232
steps:
3333
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)