Skip to content

Commit 46e6af3

Browse files
committed
v3: Switch to Ubuntu 24.04 (20.04 image is EOL)
1 parent 372f672 commit 46e6af3

7 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/antora.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
github.event.repository.fork == false ||
2828
github.event_name != 'schedule' ||
2929
(github.event_name == 'schedule' && github.event.repository.fork == true && inputs.run-scheduled-in-forks == true)
30-
runs-on: ubuntu-20.04
30+
runs-on: ubuntu-24.04
3131
steps:
3232
- name: Block deprecated repos in /etc/hosts
3333
run: |

.github/workflows/binary-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
github.event.repository.fork == false ||
3636
github.event_name != 'schedule' ||
3737
(github.event_name == 'schedule' && github.event.repository.fork == true && inputs.run-scheduled-in-forks == true)
38-
runs-on: ubuntu-20.04
38+
runs-on: ubuntu-24.04
3939
steps:
4040
- name: Block deprecated repos in /etc/hosts
4141
run: |

.github/workflows/cmd.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474
github.event.repository.fork == false ||
7575
github.event_name != 'schedule' ||
7676
(github.event_name == 'schedule' && github.event.repository.fork == true && inputs.run-scheduled-in-forks == true)
77-
runs-on: ubuntu-20.04
77+
runs-on: ubuntu-24.04
7878
outputs:
7979
matrix: ${{ steps.prepare-matrix.outputs.matrix }}
8080
steps:
@@ -99,7 +99,7 @@ jobs:
9999
name: ${{ toJSON(matrix) }}
100100
if: ${{ github.event.repository.fork == false || github.event_name != 'schedule' || (github.event_name == 'schedule' && github.event.repository.fork == true && inputs.run-scheduled-in-forks == true) }}
101101
needs: prepare-matrix
102-
runs-on: ubuntu-20.04
102+
runs-on: ubuntu-24.04
103103
strategy:
104104
# WA: https://github.community/t/reusable-workflow-with-strategy-matrix/205676/6
105105
matrix: ${{fromJson(needs.prepare-matrix.outputs.matrix)}}

.github/workflows/gradle-wrapper-validation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
jobs:
1212
cmd:
1313
name: Gradle Wrapper Validation
14-
runs-on: ubuntu-20.04
14+
runs-on: ubuntu-24.04
1515
steps:
1616
- name: Block deprecated repos in /etc/hosts
1717
run: |

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ on:
3535
jobs:
3636
cmd:
3737
name: JDK ${{ inputs.java }}
38-
runs-on: ubuntu-20.04
38+
runs-on: ubuntu-24.04
3939
if: ${{ github.event.repository.fork == false }}
4040
steps:
4141
- name: Block deprecated repos in /etc/hosts

.github/workflows/rtm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
cmd:
88
name: Ready To Merge
99
if: github.event_name == 'pull_request'
10-
runs-on: ubuntu-20.04
10+
runs-on: ubuntu-24.04
1111
steps:
1212
- name: Ready To Merge
1313
run: echo 'Ready To Merge'

.github/workflows/sync.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
- main
66
jobs:
77
sync:
8-
runs-on: ubuntu-20.04
8+
runs-on: ubuntu-24.04
99
steps:
1010
- name: Checkout
1111
uses: actions/checkout@v4

0 commit comments

Comments
 (0)