File tree 2 files changed +12
-2
lines changed
2 files changed +12
-2
lines changed Original file line number Diff line number Diff line change 17
17
18
18
jobs :
19
19
build-images :
20
- runs-on : ubuntu-latest
20
+ # `ubuntu-latest` uses `ubuntu-24.04` from 2025-01-10,
21
+ # which causes dynamic linking issues with glibc.
22
+ # Temporarily using `ubuntu-22.04` until the issue is resolved.
23
+ # Related links:
24
+ # - https://github.com/ethereum/go-ethereum/issues/30115
25
+ runs-on : ubuntu-22.04
21
26
steps :
22
27
- name : Login docker hub
23
28
Original file line number Diff line number Diff line change 15
15
16
16
jobs :
17
17
build-binaries :
18
- runs-on : ubuntu-latest
18
+ # `ubuntu-latest` uses `ubuntu-24.04` from 2025-01-10,
19
+ # which causes dynamic linking issues with glibc.
20
+ # Temporarily using `ubuntu-22.04` until the issue is resolved.
21
+ # Related links:
22
+ # - https://github.com/ethereum/go-ethereum/issues/30115
23
+ runs-on : ubuntu-22.04
19
24
steps :
20
25
- uses : actions/checkout@v3
21
26
- name : Git config
You can’t perform that action at this time.
0 commit comments