From ad4ecaed1fe63dc4cc973625c5d34dbe1b865b37 Mon Sep 17 00:00:00 2001 From: 0x1d Date: Thu, 6 Nov 2025 22:30:39 +0100 Subject: [PATCH] fix(ci): update to use Alpine package manager (apk) --- .github/workflows/ci.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 15cf8bd..c163277 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,8 +35,7 @@ jobs: - name: Install protoc and plugins run: | - apt-get update - apt-get install -y protobuf-compiler + apk add --no-cache protobuf-dev protoc go install google.golang.org/protobuf/cmd/protoc-gen-go@latest go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@latest @@ -100,8 +99,7 @@ jobs: - name: Install protoc and plugins run: | - apt-get update - apt-get install -y protobuf-compiler + apk add --no-cache protobuf-dev protoc go install google.golang.org/protobuf/cmd/protoc-gen-go@latest go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@latest @@ -146,8 +144,7 @@ jobs: - name: Install protoc and plugins run: | - apt-get update - apt-get install -y protobuf-compiler + apk add --no-cache protobuf-dev protoc go install google.golang.org/protobuf/cmd/protoc-gen-go@latest go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@latest