Skip to content

Commit 1442e0f

Browse files
committed
chore: install solc via apt instead
1 parent 31e9a9a commit 1442e0f

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/go.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,13 @@ jobs:
2929
env:
3030
EXCLUDE_REGEX: 'ava-labs/libevm/(accounts/usbwallet/trezor)$'
3131
runs-on: ubuntu-latest
32-
container: ethereum/solc:0.8.28-alpine
3332
steps:
33+
- name: Install solc
34+
run: |
35+
sudo add-apt-repository ppa:ethereum/ethereum
36+
sudo apt update
37+
sudo apt install solc=0.8.28
38+
3439
- uses: actions/checkout@v4
3540
- name: Set up Go
3641
uses: actions/setup-go@v5

0 commit comments

Comments
 (0)