Skip to content

Commit a3548c5

Browse files
authored
Merge pull request #1754 from saswatamcode/exp-eh
exp: Add dependabot config
2 parents c5cf981 + 60fd2b0 commit a3548c5

File tree

6 files changed

+18
-74
lines changed

6 files changed

+18
-74
lines changed

Diff for: .github/dependabot.yml

+4
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ updates:
88
directory: "/tutorial/whatsup"
99
schedule:
1010
interval: "monthly"
11+
- package-ecosystem: "gomod"
12+
directory: "/exp"
13+
schedule:
14+
interval: "monthly"
1115
- package-ecosystem: "github-actions"
1216
directory: "/"
1317
schedule:

Diff for: Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ include Makefile.common
1616

1717
.PHONY: deps
1818
deps:
19-
$(GO) work sync
2019
$(MAKE) common-deps
20+
cd exp && $(GO) mod tidy && $(GO) mod download
2121

2222
.PHONY: test
2323
test: deps common-test test-exp

Diff for: exp/go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ module github.com/prometheus/client_golang/exp
33
go 1.22
44

55
require (
6-
github.com/google/go-cmp v0.6.0
7-
github.com/klauspost/compress v1.17.11
6+
github.com/google/go-cmp v0.7.0
7+
github.com/klauspost/compress v1.18.0
88
github.com/prometheus/common v0.62.0
99
google.golang.org/protobuf v1.36.5
1010
)

Diff for: exp/go.sum

+11-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,18 @@
11
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
2-
github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI=
3-
github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
4-
github.com/klauspost/compress v1.17.11 h1:In6xLpyWOi1+C7tXUUWv2ot1QvBjxevKAaI6IXrJmUc=
2+
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
3+
github.com/google/go-cmp v0.7.0 h1:wk8382ETsv4JYUZwIsn6YpYiWiBsYLSJiTsyBybVuN8=
4+
github.com/google/go-cmp v0.7.0/go.mod h1:pXiqmnSA92OHEEa9HXL2W4E7lf9JzCmGVUdgjX3N/iU=
5+
github.com/klauspost/compress v1.18.0 h1:c/Cqfb0r+Yi+JtIEq73FWXVkRonBlf0CRNYc8Zttxdo=
6+
github.com/klauspost/compress v1.18.0/go.mod h1:2Pp+KzxcywXVXMr50+X0Q/Lsb43OQHYWRCY2AiWywWQ=
57
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
8+
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
69
github.com/prometheus/client_model v0.6.1 h1:ZKSh/rekM+n3CeS952MLRAdFwIKqeY8b62p8ais2e9E=
10+
github.com/prometheus/client_model v0.6.1/go.mod h1:OrxVMOVHjw3lKMa8+x6HeMGkHMQyHDk9E3jmP2AmGiY=
711
github.com/prometheus/common v0.62.0 h1:xasJaQlnWAeyHdUBeGjXmutelfJHWMRr+Fg4QszZ2Io=
12+
github.com/prometheus/common v0.62.0/go.mod h1:vyBcEuLSvWos9B1+CyL7JZ2up+uFzXhkqml0W5zIY1I=
813
github.com/stretchr/testify v1.10.0 h1:Xv5erBjTwe/5IxqUQTdXv5kgmIvbHo3QQyRwhJsOfJA=
14+
github.com/stretchr/testify v1.10.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
915
google.golang.org/protobuf v1.36.5 h1:tPhr+woSbjfYvY6/GPufUoYizxw1cF/yFoxJ2fmpwlM=
16+
google.golang.org/protobuf v1.36.5/go.mod h1:9fA7Ob0pmnwhb644+1+CVWFRbNajQ6iRojtC/QF5bRE=
1017
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
18+
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=

Diff for: go.work

-6
This file was deleted.

Diff for: go.work.sum

-62
This file was deleted.

0 commit comments

Comments
 (0)