Skip to content

Commit e40fdd5

Browse files
Update dependency ubuntu to v24
1 parent 2a33f90 commit e40fdd5

File tree

8 files changed

+17
-17
lines changed

8 files changed

+17
-17
lines changed

.github/workflows/maven-library-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ on:
2626

2727
jobs:
2828
build:
29-
runs-on: ubuntu-20.04
29+
runs-on: ubuntu-24.04
3030
steps:
3131
- name: Checkout Repo
3232
uses: actions/checkout@v4
@@ -46,7 +46,7 @@ jobs:
4646
clean compile ${{ inputs.mvn-args }}
4747
4848
test-coverage:
49-
runs-on: ubuntu-20.04
49+
runs-on: ubuntu-24.04
5050
steps:
5151
- name: Checkout Repo
5252
uses: actions/checkout@v4

.github/workflows/maven-library-deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ on:
3232

3333
jobs:
3434
deploy:
35-
runs-on: ubuntu-20.04
35+
runs-on: ubuntu-24.04
3636
steps:
3737
- name: Checkout Repo
3838
uses: actions/checkout@v4
@@ -59,7 +59,7 @@ jobs:
5959
SLACK_FOOTER: ""
6060

6161
test-coverage:
62-
runs-on: ubuntu-20.04
62+
runs-on: ubuntu-24.04
6363
steps:
6464
- name: Checkout Repo
6565
uses: actions/checkout@v4

.github/workflows/maven-service-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ on:
2525

2626
jobs:
2727
build:
28-
runs-on: ubuntu-20.04
28+
runs-on: ubuntu-24.04
2929
steps:
3030
- name: Checkout Repo
3131
uses: actions/checkout@v4
@@ -38,7 +38,7 @@ jobs:
3838
mvn-args: ${{ inputs.mvn-args }}
3939

4040
test-coverage:
41-
runs-on: ubuntu-20.04
41+
runs-on: ubuntu-24.04
4242
if: ${{ !inputs.ignore-coverage }}
4343
steps:
4444
- name: Checkout Repo

.github/workflows/maven-service-deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ on:
3131

3232
jobs:
3333
build-and-deploy:
34-
runs-on: ubuntu-20.04
34+
runs-on: ubuntu-24.04
3535
steps:
3636
- name: Checkout Repo
3737
uses: actions/checkout@v4
@@ -62,7 +62,7 @@ jobs:
6262
SLACK_FOOTER: ""
6363
test-coverage:
6464
if: ${{ !inputs.ignore-coverage }}
65-
runs-on: ubuntu-20.04
65+
runs-on: ubuntu-24.04
6666
steps:
6767
- name: Checkout Repo
6868
uses: actions/checkout@v4

.github/workflows/maven-swag-build.yml

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

2222
jobs:
2323
bundle:
24-
runs-on: ubuntu-20.04
24+
runs-on: ubuntu-24.04
2525
steps:
2626
- name: Checkout repository
2727
uses: actions/checkout@v4

.github/workflows/maven-swag-deploy.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ on:
2929

3030
jobs:
3131
build:
32-
runs-on: ubuntu-20.04
32+
runs-on: ubuntu-24.04
3333
steps:
3434
- name: Checkout Repo
3535
uses: actions/checkout@v4
@@ -60,7 +60,7 @@ jobs:
6060
retention-days: 7
6161

6262
deploy-server:
63-
runs-on: ubuntu-20.04
63+
runs-on: ubuntu-24.04
6464
needs: [build]
6565
steps:
6666
- name: Checkout Repo
@@ -94,7 +94,7 @@ jobs:
9494
maven-args: '-Dcommit.number=${{ steps.commit_info.outputs.COMMIT_NUMBER }} -Drevision="1.${{ steps.commit_info.outputs.COMMIT_NUMBER }}-${{ steps.commit_info.outputs.SHA_7 }}-server" -P="server"'
9595

9696
deploy-client:
97-
runs-on: ubuntu-20.04
97+
runs-on: ubuntu-24.04
9898
needs: [build]
9999
steps:
100100
- name: Checkout Repo
@@ -128,7 +128,7 @@ jobs:
128128
maven-args: '-Dcommit.number=${{ steps.commit_info.outputs.COMMIT_NUMBER }} -Drevision="1.${{ steps.commit_info.outputs.COMMIT_NUMBER }}-${{ steps.commit_info.outputs.SHA_7 }}-client" -P="client"'
129129

130130
success-notify:
131-
runs-on: ubuntu-20.04
131+
runs-on: ubuntu-24.04
132132
needs: [deploy-server, deploy-client]
133133
if: success()
134134
steps:
@@ -142,7 +142,7 @@ jobs:
142142
SLACK_FOOTER: ""
143143

144144
fail-notify:
145-
runs-on: ubuntu-20.04
145+
runs-on: ubuntu-24.04
146146
needs: [deploy-server, deploy-client]
147147
if: failure()
148148
steps:

.github/workflows/maven-thrift-build.yml

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

1717
jobs:
1818
build:
19-
runs-on: ubuntu-22.04
19+
runs-on: ubuntu-24.04
2020
steps:
2121
- name: Install thrift
2222
uses: valitydev/action-setup-thrift@v1.0.3

.github/workflows/maven-thrift-deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ on:
2727

2828
jobs:
2929
deploy:
30-
runs-on: ubuntu-22.04
30+
runs-on: ubuntu-24.04
3131
steps:
3232
- name: Install thrift
3333
uses: valitydev/action-setup-thrift@v1.0.3
@@ -51,7 +51,7 @@ jobs:
5151
deploy-secret-key-password: ${{ secrets.deploy-secret-key-password }}
5252
maven-args: '-Dcommit.number=${{ steps.commit_info.outputs.COMMIT_NUMBER }} -Drevision="1.${{ steps.commit_info.outputs.COMMIT_NUMBER }}-${{ steps.commit_info.outputs.SHA_7 }}"'
5353
notify:
54-
runs-on: ubuntu-20.04
54+
runs-on: ubuntu-24.04
5555
needs: [deploy]
5656
steps:
5757
- name: Mattermost Notification

0 commit comments

Comments
 (0)