Skip to content

Commit 70d2ecc

Browse files
committed
Update cockroach-go version to v2.2.13
This will pull in the changes to use tenant scoped client certs for running the multitenant tests. This change is needed for the example-orms tests to run successfully with the upcoming changes to client certs in the multitenant architecture. With this change, the client certificates generated for the tenant tests will be scoped to the correct tenant servers to ensure the client certificates can be used to authenticate with the tenant server while running the example-orms tests.
1 parent 7c583f8 commit 70d2ecc

File tree

3 files changed

+76
-59
lines changed

3 files changed

+76
-59
lines changed

.github/workflows/golangci-lint.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,11 @@ jobs:
1616
name: lint
1717
runs-on: ubuntu-latest
1818
steps:
19-
- uses: actions/checkout@v2
19+
- uses: actions/checkout@v3
20+
with:
21+
go-version: 1.17
2022
- name: golangci-lint
21-
uses: golangci/golangci-lint-action@v2
23+
uses: golangci/golangci-lint-action@v3
2224
with:
2325
# Optional: version of golangci-lint to use in form of v1.2 or v1.2.3 or `latest` to use the latest version
24-
version: v1.29
26+
version: v1.46.2

go.mod

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,12 @@ module github.com/cockroachdb/examples-orms
33
go 1.13
44

55
require (
6-
github.com/cockroachdb/cockroach-go/v2 v2.2.4
6+
github.com/cockroachdb/cockroach-go/v2 v2.2.13
77
github.com/go-pg/pg/v10 v10.9.0
88
github.com/julienschmidt/httprouter v1.1.0
9-
github.com/lib/pq v1.10.0
9+
github.com/lib/pq v1.10.6
1010
github.com/pkg/errors v0.9.1
11-
gorm.io/driver/postgres v1.0.8
12-
gorm.io/gorm v1.21.6
11+
gopkg.in/yaml.v2 v2.4.0 // indirect
12+
gorm.io/driver/postgres v1.3.5
13+
gorm.io/gorm v1.23.5
1314
)

0 commit comments

Comments
 (0)