Skip to content

Commit b3ff450

Browse files
committed
fix lints and tidy go.mod
1 parent c428f54 commit b3ff450

File tree

5 files changed

+6
-3
lines changed

5 files changed

+6
-3
lines changed

.github/workflows/framework-golden-tests-private.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
go-modules-${{ runner.os }}
6868
- name: Install dependencies
6969
run: go mod download
70-
- name: Run System Tests
70+
- name: Run Tests
7171
if: steps.changes.outputs.src == 'true'
7272
env:
7373
CTF_CONFIGS: ${{ matrix.test.config }}

.github/workflows/framework-golden-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
config: fake.toml
7676
count: 1
7777
timeout: 10m
78-
# TODO: sdlc auth
78+
# TODO: sdlc auth (move to framework-golden-tests-private.yml, which has that auth set up)
7979
# - name: TestDockerFakes
8080
# config: fake_docker.toml
8181
# count: 1

framework/components/jd/grpc_wait_strategy.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ func (g *GRPCHealthStrategy) WaitUntilReady(ctx context.Context, target tcwait.S
6464
}
6565

6666
// Get host and port
67-
host, err := framework.GetHost(target.(tc.Container))
67+
host, err := framework.GetHost(target.(tc.Container)) //nolint:contextcheck //don't want modify the signture of GetHost() yet
6868
if err != nil {
6969
continue
7070
}

framework/examples/myproject_cll/go.mod

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,7 @@ require (
119119
golang.org/x/text v0.26.0 // indirect
120120
golang.org/x/time v0.7.0 // indirect
121121
google.golang.org/genproto/googleapis/api v0.0.0-20250528174236-200df99c418a // indirect
122+
google.golang.org/genproto/googleapis/rpc v0.0.0-20250603155806-513f23925822 // indirect
122123
google.golang.org/grpc v1.72.2 // indirect
123124
google.golang.org/protobuf v1.36.6 // indirect
124125
gopkg.in/guregu/null.v4 v4.0.0 // indirect

framework/examples/myproject_cll/go.sum

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -334,6 +334,8 @@ go.opentelemetry.io/otel/metric v1.37.0 h1:mvwbQS5m0tbmqML4NqK+e3aDiO02vsf/Wgbsd
334334
go.opentelemetry.io/otel/metric v1.37.0/go.mod h1:04wGrZurHYKOc+RKeye86GwKiTb9FKm1WHtO+4EVr2E=
335335
go.opentelemetry.io/otel/sdk v1.37.0 h1:ItB0QUqnjesGRvNcmAcU0LyvkVyGJ2xftD29bWdDvKI=
336336
go.opentelemetry.io/otel/sdk v1.37.0/go.mod h1:VredYzxUvuo2q3WRcDnKDjbdvmO0sCzOvVAiY+yUkAg=
337+
go.opentelemetry.io/otel/sdk/metric v1.34.0 h1:5CeK9ujjbFVL5c1PhLuStg1wxA7vQv7ce1EK0Gyvahk=
338+
go.opentelemetry.io/otel/sdk/metric v1.34.0/go.mod h1:jQ/r8Ze28zRKoNRdkjCZxfs6YvBTG1+YIqyFVFYec5w=
337339
go.opentelemetry.io/otel/trace v1.37.0 h1:HLdcFNbRQBE2imdSEgm/kwqmQj1Or1l/7bW6mxVK7z4=
338340
go.opentelemetry.io/otel/trace v1.37.0/go.mod h1:TlgrlQ+PtQO5XFerSPUYG0JSgGyryXewPGyayAWSBS0=
339341
go.opentelemetry.io/proto/otlp v1.7.0 h1:jX1VolD6nHuFzOYso2E73H85i92Mv8JQYk0K9vz09os=

0 commit comments

Comments
 (0)