Skip to content

Commit d143b42

Browse files
chore: add influxdb (needed for performance test) dependency
chore: add module checksums chore: mod tidy chore: enabled sonar debug flag test with new token
1 parent 292e8c5 commit d143b42

File tree

5 files changed

+35
-1476
lines changed

5 files changed

+35
-1476
lines changed

.github/workflows/pull.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ jobs:
163163
uses: sonarsource/sonarcloud-github-action@master
164164
env:
165165
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
166-
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
166+
SONAR_TOKEN: ${{ secrets.SONAR_NEW_TOKEN }}
167167

168168
performance-test-suite-detect-runners:
169169
runs-on: ubuntu-latest

.github/workflows/push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,4 +330,4 @@ jobs:
330330
uses: sonarsource/sonarcloud-github-action@master
331331
env:
332332
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
333-
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
333+
SONAR_TOKEN: ${{ secrets.SONAR_NEW_TOKEN }}

go.mod

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ require (
1212
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0
1313
github.com/grpc-ecosystem/grpc-gateway v1.16.0
1414
github.com/grpc-ecosystem/grpc-gateway/v2 v2.17.0
15+
github.com/influxdata/influxdb-client-go/v2 v2.13.0
1516
github.com/jackc/pgx/v4 v4.16.1
1617
github.com/jaswdr/faker v1.16.0
1718
github.com/lib/pq v1.10.9
@@ -31,10 +32,10 @@ require (
3132
github.com/spf13/cobra v1.6.1
3233
github.com/spf13/pflag v1.0.5
3334
github.com/spf13/viper v1.15.0
34-
github.com/stretchr/testify v1.8.2
35+
github.com/stretchr/testify v1.8.4
3536
github.com/takama/daemon v0.12.0
3637
golang.org/x/crypto v0.17.0
37-
golang.org/x/net v0.19.0
38+
golang.org/x/net v0.17.0
3839
golang.org/x/sys v0.15.0
3940
golang.org/x/tools/cmd/cover v0.1.0-deprecated
4041
google.golang.org/genproto/googleapis/api v0.0.0-20230822172742-b8732ec3820d
@@ -50,12 +51,12 @@ require (
5051
github.com/aead/chacha20 v0.0.0-20180709150244-8b13a72661da // indirect
5152
github.com/aead/chacha20poly1305 v0.0.0-20201124145622-1a5aba2a8b29 // indirect
5253
github.com/aead/poly1305 v0.0.0-20180717145839-3fee0db0b635 // indirect
54+
github.com/apapsch/go-jsonmerge/v2 v2.0.0 // indirect
5355
github.com/beorn7/perks v1.0.1 // indirect
5456
github.com/cespare/xxhash v1.1.0 // indirect
5557
github.com/cespare/xxhash/v2 v2.2.0 // indirect
5658
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
5759
github.com/davecgh/go-spew v1.1.1 // indirect
58-
github.com/deepmap/oapi-codegen v1.8.2 // indirect
5960
github.com/dgraph-io/ristretto v0.0.2 // indirect
6061
github.com/envoyproxy/protoc-gen-validate v0.10.1 // indirect
6162
github.com/fsnotify/fsnotify v1.6.0 // indirect
@@ -65,6 +66,7 @@ require (
6566
github.com/huandu/xstrings v1.3.2 // indirect
6667
github.com/imdario/mergo v0.3.13 // indirect
6768
github.com/inconshreveable/mousetrap v1.0.1 // indirect
69+
github.com/influxdata/line-protocol v0.0.0-20200327222509-2487e7298839 // indirect
6870
github.com/jackc/chunkreader/v2 v2.0.1 // indirect
6971
github.com/jackc/pgconn v1.12.1 // indirect
7072
github.com/jackc/pgio v1.0.0 // indirect
@@ -73,8 +75,8 @@ require (
7375
github.com/jackc/pgservicefile v0.0.0-20200714003250-2b9c44734f2b // indirect
7476
github.com/jackc/pgtype v1.11.0 // indirect
7577
github.com/magiconair/properties v1.8.7 // indirect
76-
github.com/mattn/go-colorable v0.1.12 // indirect
77-
github.com/mattn/go-isatty v0.0.14 // indirect
78+
github.com/mattn/go-colorable v0.1.13 // indirect
79+
github.com/mattn/go-isatty v0.0.19 // indirect
7880
github.com/mattn/go-runewidth v0.0.13 // indirect
7981
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
8082
github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db // indirect
@@ -84,10 +86,11 @@ require (
8486
github.com/mitchellh/reflectwalk v1.0.2 // indirect
8587
github.com/mwitkow/go-proto-validators v0.0.0-20180403085117-0950a7990007 // indirect
8688
github.com/nsf/termbox-go v1.1.1 // indirect
89+
github.com/oapi-codegen/runtime v1.0.0 // indirect
8790
github.com/ory/viper v1.7.5 // indirect
8891
github.com/pborman/uuid v1.2.0 // indirect
8992
github.com/pelletier/go-toml v1.9.5 // indirect
90-
github.com/pelletier/go-toml/v2 v2.0.6 // indirect
93+
github.com/pelletier/go-toml/v2 v2.0.9 // indirect
9194
github.com/pkg/errors v0.9.1 // indirect
9295
github.com/pmezard/go-difflib v1.0.0 // indirect
9396
github.com/pseudomuto/protokit v0.2.1 // indirect

0 commit comments

Comments
 (0)