Skip to content

Commit bfb2d64

Browse files
authored
Update dependencies (#214)
* Update dependencies * Bump gin * fmt * lint * Update golangci-lint * Try new lint action version * Drop 1.18 * Remove duplicate build constraints
1 parent 3fbf3c0 commit bfb2d64

File tree

28 files changed

+3425
-603
lines changed

28 files changed

+3425
-603
lines changed

.github/workflows/pr-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-20.04
1414
strategy:
1515
matrix:
16-
go: ["1.18", "1.19", "1.20"]
16+
go: ["1.19", "1.20"]
1717
steps:
1818
# Set fetch-depth: 0 to fetch commit history and tags for use in version calculation
1919
- name: Check out code
@@ -37,10 +37,10 @@ jobs:
3737
make deps
3838
3939
- name: Lint files
40-
uses: golangci/golangci-lint-action@v3.4.0
40+
uses: golangci/golangci-lint-action@v3.6.0
4141
with:
4242
# Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version.
43-
version: v1.51.1
43+
version: v1.52.2
4444
args: -v
4545
skip-pkg-cache: true
4646
only-new-issues: true

examples/gin-server/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ go 1.15
55
replace github.com/hypertrace/goagent => ../..
66

77
require (
8-
github.com/gin-gonic/gin v1.7.7
8+
github.com/gin-gonic/gin v1.9.1
99
github.com/hypertrace/goagent v0.0.0-00010101000000-000000000000
1010
)

examples/gin-server/go.sum

Lines changed: 555 additions & 81 deletions
Large diffs are not rendered by default.

examples/grpc-client/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// +build ignore
1+
//go:build ignore
22

33
package main
44

examples/grpc-server/main.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
//go:build ignore
2-
// +build ignore
32

43
package main
54

examples/http-client/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// +build ignore
1+
//go:build ignore
22

33
package main
44

examples/http-server/main.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
//go:build ignore
2-
// +build ignore
32

43
package main
54

examples/manual/main.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
//go:build ignore
2-
// +build ignore
32

43
package main
54

examples/mux-server/go.sum

Lines changed: 538 additions & 71 deletions
Large diffs are not rendered by default.

examples/postgres-query/go.sum

Lines changed: 538 additions & 72 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)