Skip to content

Commit 3b74b36

Browse files
authored
Migrate to buf v2 config format and update deps (#98)
1 parent 3954efc commit 3b74b36

18 files changed

+162
-183
lines changed

.github/workflows/docker.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
cache: false
3939

4040
- name: Lint
41-
uses: golangci/golangci-lint-action@v4
41+
uses: golangci/golangci-lint-action@v6
4242
with:
4343
args: --build-tags integration -p bugs -p unused -D protogetter --timeout=10m
4444

.github/workflows/release-drafter.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ jobs:
1010
build:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: release-drafter/release-drafter@v5
13+
- uses: release-drafter/release-drafter@v6
1414
env:
1515
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Dockerfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
FROM alpine:3.19 as health-downloader
2-
ENV GRPC_HEALTH_PROBE_VERSION=v0.4.25 \
1+
FROM alpine:3.20 as health-downloader
2+
ENV GRPC_HEALTH_PROBE_VERSION=v0.4.26 \
33
GRPC_HEALTH_PROBE_URL=https://github.com/grpc-ecosystem/grpc-health-probe/releases/download
44
RUN apk -U add curl \
55
&& curl -fLso /bin/grpc_health_probe \
66
${GRPC_HEALTH_PROBE_URL}/${GRPC_HEALTH_PROBE_VERSION}/grpc_health_probe-linux-amd64 \
77
&& chmod +x /bin/grpc_health_probe
88

9-
FROM alpine:3.19
9+
FROM alpine:3.20
1010
RUN apk -U add ca-certificates
1111
COPY --from=health-downloader /bin/grpc_health_probe /bin/grpc_health_probe
1212
COPY bin/server /masterdata-api

api/v1/common.pb.go

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

api/v1/iam.pb.go

+7-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

api/v1/meta.pb.go

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

api/v1/project.pb.go

+12-12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

api/v1/project_member.pb.go

+11-11
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

api/v1/quota.pb.go

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)