Skip to content

Commit df76497

Browse files
authored
Pin ubuntu version to 22.04 in github workflow (#38)
1 parent 808e265 commit df76497

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

.github/workflows/_build-docker.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,12 @@ on:
1717

1818
jobs:
1919
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
2126
steps:
2227
- name: Login docker hub
2328
uses: docker/[email protected]

.github/workflows/_build.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,12 @@ on:
1515

1616
jobs:
1717
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
1924
steps:
2025
- uses: actions/checkout@v3
2126
- name: Git config

0 commit comments

Comments
 (0)