Skip to content

Commit 4405d58

Browse files
chore(deps): update dependency ubuntu to v24 (#230)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent b77fb1e commit 4405d58

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

.github/workflows/.deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
name: Helm
6767
if: ${{ inputs.build_outputs != '' }}
6868
environment: ${{ inputs.environment }}
69-
runs-on: ubuntu-22.04
69+
runs-on: ubuntu-24.04
7070
timeout-minutes: ${{ inputs.timeout-minutes }}
7171
steps:
7272
- uses: actions/checkout@v4

.github/workflows/analysis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
trivy:
1919
name: Trivy Security Scan
2020
if: github.event_name != 'pull_request' || !github.event.pull_request.draft
21-
runs-on: ubuntu-22.04
21+
runs-on: ubuntu-24.04
2222
steps:
2323
- uses: actions/checkout@v4
2424

@@ -40,7 +40,7 @@ jobs:
4040
java:
4141
name: Java
4242
if: github.event_name != 'pull_request' || !github.event.pull_request.draft
43-
runs-on: ubuntu-22.04
43+
runs-on: ubuntu-24.04
4444
defaults:
4545
run:
4646
working-directory: backend-java
@@ -78,7 +78,7 @@ jobs:
7878
python:
7979
name: Python
8080
if: github.event_name != 'pull_request' || !github.event.pull_request.draft
81-
runs-on: ubuntu-22.04
81+
runs-on: ubuntu-24.04
8282
defaults:
8383
run:
8484
working-directory: backend-py
@@ -130,7 +130,7 @@ jobs:
130130
name: Analysis Results
131131
needs: [trivy, java, python]
132132
if: always()
133-
runs-on: ubuntu-22.04
133+
runs-on: ubuntu-24.04
134134
steps:
135135
- if: contains(needs.*.result, 'failure')
136136
run: echo "At least one job has failed." && exit 1

.github/workflows/merge.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
name: Set Variables
2525
outputs:
2626
pr: ${{ steps.pr.outputs.pr }}
27-
runs-on: ubuntu-22.04
27+
runs-on: ubuntu-24.04
2828
timeout-minutes: 1
2929
steps: # Get PR number for squash merges to main
3030
- name: PR Number
@@ -46,7 +46,7 @@ jobs:
4646
defaults:
4747
run:
4848
working-directory: integration-tests
49-
runs-on: ubuntu-22.04
49+
runs-on: ubuntu-24.04
5050
strategy:
5151
matrix:
5252
name: [quarkus, fiber, fastapi]
@@ -99,7 +99,7 @@ jobs:
9999
promote:
100100
name: Promote Images
101101
needs: [deploy-prod, vars]
102-
runs-on: ubuntu-22.04
102+
runs-on: ubuntu-24.04
103103
permissions:
104104
packages: write
105105
strategy:

.github/workflows/pr-open.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
packages: write
1919
outputs:
2020
digest: ${{ steps.builds.outputs.digest }}
21-
runs-on: ubuntu-22.04
21+
runs-on: ubuntu-24.04
2222
strategy:
2323
matrix:
2424
package: [ backend-go, backend-java, backend-py, migrations-go, migrations-py]
@@ -60,7 +60,7 @@ jobs:
6060
name: PR Results
6161
needs: [builds, deploys]
6262
if: always()
63-
runs-on: ubuntu-22.04
63+
runs-on: ubuntu-24.04
6464
steps:
6565
- if: contains(needs.*.result, 'failure')
6666
run: echo "At least one job has failed." && exit 1

.github/workflows/pr-validate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ jobs:
2222
name: Validate Results
2323
if: always()
2424
needs: [validate]
25-
runs-on: ubuntu-22.04
25+
runs-on: ubuntu-24.04
2626
steps:
2727
- run: echo "Success!"

0 commit comments

Comments
 (0)