Skip to content

Commit

Permalink
feat: upgrade go to 1.23 (#1473)
Browse files Browse the repository at this point in the history
Co-authored-by: Ludwig <ludwig.bedacht@gmail.com>
  • Loading branch information
StarpTech and Noroth authored Dec 20, 2024
1 parent 3c6562c commit 4c29d2d
Show file tree
Hide file tree
Showing 33 changed files with 88 additions and 53 deletions.
12 changes: 11 additions & 1 deletion .github/actions/build-push-image/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ inputs:
push:
description: "Whether to push the image to the GitHub container registry"
default: "true"
load_Image:
description: "Whether to make the image locally available to the build. Doesn't work with multi-platform builds"
default: "false"

runs:
using: "composite"
Expand All @@ -46,7 +49,10 @@ runs:
tags: |
type=ref,event=branch
type=ref,event=pr
# minimal (short sha)
type=sha
# full length commit sha
type=raw,value=sha-${{ github.sha }}
# set latest tag for default branch
type=raw,value=latest,enable={{is_default_branch}}
# use custom value instead of git tag
Expand All @@ -72,7 +78,10 @@ runs:
password: ${{ inputs.token }}

- name: Build & Push Docker Image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
env:
DOCKER_BUILD_SUMMARY: false
DOCKER_BUILD_RECORD_UPLOAD: false
with:
# This is a limitation of GitHub. Only organization members can push to GitHub Container Registry
# For now, we will disable the push to the GitHub Container Registry for external contributors
Expand All @@ -82,6 +91,7 @@ runs:
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
platforms: ${{ inputs.image_platforms }}
load: ${{ inputs.load_Image == 'true' }}
outputs:
type=image,name=target,annotation-index.org.opencontainers.image.description=${{ inputs.image_description }}
type=image,name=target,annotation-index.org.opencontainers.image.source=https://github.com/wundergraph/cosmo
Expand Down
4 changes: 2 additions & 2 deletions .github/actions/go-linter/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ runs:
working-directory: ${{ inputs.working-directory }}

- name: Run staticcheck linter
uses: dominikh/staticcheck-action@v1.3.0
uses: dominikh/staticcheck-action@v1.3.1
with:
version: 2023.1.7
version: 2024.1.1
install-go: false
working-directory: ${{ inputs.working-directory }}
2 changes: 1 addition & 1 deletion .github/actions/go/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: "This action install go and cache modules and build dependencies"
inputs:
go-version:
description: "The go version to install"
default: "1.21"
default: "1.23"
required: false
cache-dependency-path:
description: "The path to the dependency to cache"
Expand Down
21 changes: 17 additions & 4 deletions .github/actions/image-scan/action.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: "Image Vulnerability Scan"
description: "This action performs a Trivy scan on the image and adds a PR comment with the results."
inputs:
name:
description: "The name of service"
required: true

github_token:
description: 'GitHub Token'
required: true
Expand Down Expand Up @@ -43,15 +47,24 @@ runs:
if: success() && steps.scan.outcome == 'success'
with:
message: |
# Trivy Image scan passed
:white_check_mark: No security vulnerabilities found in image `${{ inputs.image_ref }}`.
# ${{ inputs.name }} image scan passed
:white_check_mark: No security [vulnerabilities](https://github.com/wundergraph/cosmo/security/code-scanning?query=pr%3A${{ github.event.number }}+is%3Aopen+tool%3ATrivy) found in image:
```
${{ inputs.image_ref }}
```
- uses: mshick/add-pr-comment@v2
if: failure() && steps.scan.outcome == 'failure'
with:
message: |
# Trivy Image scan failed
:x: Image `${{ inputs.image_ref }}` has security vulnerabilities.
# ${{ inputs.name }} image scan failed
:x: Security vulnerabilities found in image:
```
${{ inputs.image_ref }}
```
Please check the security [vulnerabilities](https://github.com/wundergraph/cosmo/security/code-scanning?query=pr%3A${{ github.event.number }}+is%3Aopen+tool%3ATrivy) found in the PR.
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/router-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -184,12 +184,14 @@ jobs:
image_name: router
image_description: "Cosmo Router"
image_platforms: 'linux/amd64'
load_Image: 'true'
push: 'false'

- uses: ./.github/actions/image-scan
with:
name: "Router"
github_token: ${{secrets.GITHUB_TOKEN}}
image_ref: 'ghcr.io/wundergraph/cosmo/router:pr-${{github.event.number}}'
image_ref: 'ghcr.io/wundergraph/cosmo/router:sha-${{ github.sha }}'

build_push_image:
# This is a limitation of GitHub. Only organization members can push to GitHub Container Registry
Expand Down
6 changes: 2 additions & 4 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,7 @@ According to best practices, we don't commit the `go.work` or `go.sum` files. Th
### Example

```
go 1.21.5
toolchain go1.22.0
go 1.23
use (
./demo
Expand Down Expand Up @@ -89,7 +87,7 @@ We merge all pull requests in `squash merge` mode. You're not enforced to use [c
- [Docker Compose V2](https://docs.docker.com/compose/install/)
- [NodeJS LTS](https://nodejs.org/en/download/)
- [PNPM 8+](https://pnpm.io/installation)
- [Go 1.21+](https://golang.org/doc/install)
- [Go 1.23+](https://golang.org/doc/install)
- [wgc](https://www.npmjs.com/package/wgc)
- .env/.env.local (see below)

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ setup-build-tools:

setup-dev-tools: setup-build-tools
go install github.com/amacneil/dbmate/v2@v2.6.0
go install honnef.co/go/tools/cmd/staticcheck@2023.1.7
go install honnef.co/go/tools/cmd/staticcheck@2024.1.1
go install github.com/yannh/kubeconform/cmd/kubeconform@v0.6.3
go install github.com/norwoodj/helm-docs/cmd/helm-docs@v1.11.3

Expand Down
3 changes: 1 addition & 2 deletions aws-lambda-router/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,7 @@ deploy: build-sam
sam deploy

lint:
cd adapter && go vet ./...
cd adapter && staticcheck ./...
staticcheck ./...

test:
go test -v ./...
Expand Down
2 changes: 1 addition & 1 deletion aws-lambda-router/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ require (
go.withmatt.com/connect-brotli v0.4.0 // indirect
golang.org/x/crypto v0.31.0 // indirect
golang.org/x/exp v0.0.0-20240613232115-7f521ea00fb8 // indirect
golang.org/x/net v0.30.0 // indirect
golang.org/x/net v0.33.0 // indirect
golang.org/x/sync v0.10.0 // indirect
golang.org/x/sys v0.28.0 // indirect
golang.org/x/text v0.21.0 // indirect
Expand Down
4 changes: 2 additions & 2 deletions aws-lambda-router/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -312,8 +312,8 @@ golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn
golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=
golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
golang.org/x/net v0.0.0-20191116160921-f9c825593386/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
golang.org/x/net v0.30.0 h1:AcW1SDZMkb8IpzCdQUaIq2sP4sZ4zw+55h6ynffypl4=
golang.org/x/net v0.30.0/go.mod h1:2wGyMJ5iFasEhkwi13ChkO/t1ECNC4X4eBKkVFyYFlU=
golang.org/x/net v0.33.0 h1:74SYHlV8BIgHIFC/LrYkOGIwL19eTYXQ5wc6TBuO36I=
golang.org/x/net v0.33.0/go.mod h1:HXLR5J+9DxmrqMwG9qjGCxZ+zKXxBru04zlTvWlWuN4=
golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
golang.org/x/sync v0.10.0 h1:3NQrjDixjgGwUOCaF8w2+VYHv0Ve/vGYSbdkTa98gmQ=
golang.org/x/sync v0.10.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk=
Expand Down
2 changes: 1 addition & 1 deletion composition-go/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/wundergraph/cosmo/composition-go

go 1.21.0
go 1.23

require (
github.com/dop251/goja v0.0.0-20230906160731-9410bcaa81d2
Expand Down
7 changes: 6 additions & 1 deletion connect-go/go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
module github.com/wundergraph/cosmo/connect-go

go 1.22.0
go 1.23

require (
connectrpc.com/connect v1.17.0
google.golang.org/protobuf v1.36.0
)
10 changes: 10 additions & 0 deletions connect-go/go.sum
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
connectrpc.com/connect v1.17.0 h1:W0ZqMhtVzn9Zhn2yATuUokDLO5N+gIuBWMOnsQrfmZk=
connectrpc.com/connect v1.17.0/go.mod h1:0292hj1rnx8oFrStN7cB4jjVBeqs+Yx5yDIC2prWDO8=
github.com/google/go-cmp v0.5.9 h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38=
github.com/google/go-cmp v0.5.9/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
golang.org/x/net v0.23.0 h1:7EYJ93RZ9vYSZAIb2x3lnuvqO5zneoD6IvWjuhfxjTs=
golang.org/x/net v0.23.0/go.mod h1:JKghWKKOSdJwpW2GEx0Ja7fmaKnMsbu+MWVZTokSYmg=
golang.org/x/text v0.14.0 h1:ScX5w1eTa3QqT8oi6+ziP7dTV1S2+ALU0bI+0zXKWiQ=
golang.org/x/text v0.14.0/go.mod h1:18ZOQIKpY8NJVqYksKHtTdi31H5itFRjB5/qKTNYzSU=
google.golang.org/protobuf v1.36.0 h1:mjIs9gYtt56AzC4ZaffQuh88TZurBGhIJMBZGSxNerQ=
google.golang.org/protobuf v1.36.0/go.mod h1:9fA7Ob0pmnwhb644+1+CVWFRbNajQ6iRojtC/QF5bRE=
2 changes: 1 addition & 1 deletion demo/Dockerfile.availability
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.21 as builder
FROM golang:1.23 as builder

WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion demo/Dockerfile.countries
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.21 as builder
FROM golang:1.23 as builder

WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion demo/Dockerfile.employees
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.21 as builder
FROM golang:1.23 as builder

WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion demo/Dockerfile.family
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.21 as builder
FROM golang:1.23 as builder

WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion demo/Dockerfile.hobbies
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.21 as builder
FROM golang:1.23 as builder

WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion demo/Dockerfile.mood
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.21 as builder
FROM golang:1.23 as builder

WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion demo/Dockerfile.products
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.21 as builder
FROM golang:1.23 as builder

WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion demo/Dockerfile.products_fg
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.21 as builder
FROM golang:1.23 as builder

WORKDIR /app

Expand Down
6 changes: 3 additions & 3 deletions demo/go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
module github.com/wundergraph/cosmo/demo

go 1.21.5
go 1.23

toolchain go1.22.0
toolchain go1.23.4

require (
github.com/99designs/gqlgen v0.17.49
Expand Down Expand Up @@ -141,7 +141,7 @@ require (
golang.org/x/crypto v0.31.0 // indirect
golang.org/x/exp v0.0.0-20240613232115-7f521ea00fb8 // indirect
golang.org/x/mod v0.18.0 // indirect
golang.org/x/net v0.30.0 // indirect
golang.org/x/net v0.33.0 // indirect
golang.org/x/sys v0.28.0 // indirect
golang.org/x/text v0.21.0 // indirect
golang.org/x/time v0.5.0 // indirect
Expand Down
2 changes: 2 additions & 0 deletions demo/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -378,6 +378,8 @@ golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v
golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c=
golang.org/x/net v0.30.0 h1:AcW1SDZMkb8IpzCdQUaIq2sP4sZ4zw+55h6ynffypl4=
golang.org/x/net v0.30.0/go.mod h1:2wGyMJ5iFasEhkwi13ChkO/t1ECNC4X4eBKkVFyYFlU=
golang.org/x/net v0.33.0 h1:74SYHlV8BIgHIFC/LrYkOGIwL19eTYXQ5wc6TBuO36I=
golang.org/x/net v0.33.0/go.mod h1:HXLR5J+9DxmrqMwG9qjGCxZ+zKXxBru04zlTvWlWuN4=
golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
golang.org/x/sync v0.10.0 h1:3NQrjDixjgGwUOCaF8w2+VYHv0Ve/vGYSbdkTa98gmQ=
Expand Down
2 changes: 1 addition & 1 deletion graphqlmetrics/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=${BUILDPLATFORM} golang:1.21 AS builder
FROM --platform=${BUILDPLATFORM} golang:1.23 AS builder

ARG TARGETOS
ARG TARGETARCH
Expand Down
4 changes: 2 additions & 2 deletions graphqlmetrics/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/wundergraph/cosmo/graphqlmetrics

go 1.21.0
go 1.23

require (
connectrpc.com/connect v1.16.2
Expand Down Expand Up @@ -58,7 +58,7 @@ require (
go.opentelemetry.io/otel/trace v1.28.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
golang.org/x/crypto v0.31.0 // indirect
golang.org/x/net v0.30.0 // indirect
golang.org/x/net v0.33.0 // indirect
golang.org/x/sys v0.28.0 // indirect
golang.org/x/text v0.21.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
Expand Down
4 changes: 2 additions & 2 deletions graphqlmetrics/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -160,8 +160,8 @@ golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLL
golang.org/x/net v0.0.0-20200226121028-0de0cce0169b/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU=
golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y=
golang.org/x/net v0.30.0 h1:AcW1SDZMkb8IpzCdQUaIq2sP4sZ4zw+55h6ynffypl4=
golang.org/x/net v0.30.0/go.mod h1:2wGyMJ5iFasEhkwi13ChkO/t1ECNC4X4eBKkVFyYFlU=
golang.org/x/net v0.33.0 h1:74SYHlV8BIgHIFC/LrYkOGIwL19eTYXQ5wc6TBuO36I=
golang.org/x/net v0.33.0/go.mod h1:HXLR5J+9DxmrqMwG9qjGCxZ+zKXxBru04zlTvWlWuN4=
golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
Expand Down
4 changes: 2 additions & 2 deletions otelcollector/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=${BUILDPLATFORM} golang:1.21 AS builder
FROM --platform=${BUILDPLATFORM} golang:1.23 AS builder

ARG TARGETOS
ARG TARGETARCH
Expand All @@ -16,7 +16,7 @@ RUN ./ocb --config otelcol-builder.yaml \
&& chmod +x /app/otelcol-dev/otelcol \
&& /app/otelcol-dev/otelcol --version

FROM --platform=${BUILDPLATFORM} golang:1.21
FROM --platform=${BUILDPLATFORM} golang:1.23

COPY ./otel-config.yaml /etc/otel-config.yaml
COPY --from=builder /app/otelcol-dev/otelcol /otelcol
Expand Down
6 changes: 2 additions & 4 deletions router-tests/go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
module github.com/wundergraph/cosmo/router-tests

go 1.21.5

toolchain go1.22.0
go 1.23

require (
github.com/buger/jsonparser v1.1.1
Expand Down Expand Up @@ -159,7 +157,7 @@ require (
golang.org/x/crypto v0.31.0 // indirect
golang.org/x/exp v0.0.0-20240613232115-7f521ea00fb8 // indirect
golang.org/x/mod v0.18.0 // indirect
golang.org/x/net v0.30.0 // indirect
golang.org/x/net v0.33.0 // indirect
golang.org/x/sync v0.10.0 // indirect
golang.org/x/sys v0.28.0 // indirect
golang.org/x/text v0.21.0 // indirect
Expand Down
4 changes: 2 additions & 2 deletions router-tests/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -428,8 +428,8 @@ golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLL
golang.org/x/net v0.0.0-20191116160921-f9c825593386/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
golang.org/x/net v0.0.0-20200226121028-0de0cce0169b/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU=
golang.org/x/net v0.30.0 h1:AcW1SDZMkb8IpzCdQUaIq2sP4sZ4zw+55h6ynffypl4=
golang.org/x/net v0.30.0/go.mod h1:2wGyMJ5iFasEhkwi13ChkO/t1ECNC4X4eBKkVFyYFlU=
golang.org/x/net v0.33.0 h1:74SYHlV8BIgHIFC/LrYkOGIwL19eTYXQ5wc6TBuO36I=
golang.org/x/net v0.33.0/go.mod h1:HXLR5J+9DxmrqMwG9qjGCxZ+zKXxBru04zlTvWlWuN4=
golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
Expand Down
2 changes: 1 addition & 1 deletion router/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=${BUILDPLATFORM} golang:1.21 AS builder
FROM --platform=${BUILDPLATFORM} golang:1.23 AS builder

ARG TARGETOS
ARG TARGETARCH
Expand Down
2 changes: 1 addition & 1 deletion router/custom.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.21 as builder
FROM golang:1.23 as builder

ARG TARGETOS
ARG TARGETARCH
Expand Down
6 changes: 2 additions & 4 deletions router/go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
module github.com/wundergraph/cosmo/router

go 1.21.5

toolchain go1.22.0
go 1.23

require (
connectrpc.com/connect v1.16.2
Expand Down Expand Up @@ -138,7 +136,7 @@ require (
go.opentelemetry.io/proto/otlp v1.1.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
golang.org/x/crypto v0.31.0 // indirect
golang.org/x/net v0.30.0 // indirect
golang.org/x/net v0.33.0 // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20240102182953-50ed04b92917 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20240102182953-50ed04b92917 // indirect
gopkg.in/cenkalti/backoff.v1 v1.1.0 // indirect
Expand Down
Loading

0 comments on commit 4c29d2d

Please sign in to comment.