File tree Expand file tree Collapse file tree 6 files changed +15
-8
lines changed Expand file tree Collapse file tree 6 files changed +15
-8
lines changed Original file line number Diff line number Diff line change @@ -4,3 +4,11 @@ updates:
4
4
directory : " /"
5
5
schedule :
6
6
interval : " monthly"
7
+ - package-ecosystem : " gomod"
8
+  directory : " /examples/middleware"
9
+  schedule :
10
+  interval : " monthly"
11
+ - package-ecosystem : " gomod"
12
+ directory : " /tutorial/whatsup"
13
+ schedule :
14
+ interval : " monthly"
Original file line number Diff line number Diff line change @@ -25,14 +25,14 @@ jobs:
25
25
- name : Checkout repository
26
26
uses : actions/checkout@v3
27
27
- name : install Go
28
- uses : actions/setup-go@v2
28
+ uses : actions/setup-go@v3
29
29
with :
30
- go-version : 1.18 .x
30
+ go-version : 1.20 .x
31
31
- name : Install snmp_exporter/generator dependencies
32
32
run : sudo apt-get update && sudo apt-get -y install libsnmp-dev
33
33
if : github.repository == 'prometheus/snmp_exporter'
34
34
- name : Lint
35
35
36
36
with :
37
37
args : --verbose
38
- version : v1.51.2
38
+ version : v1.53.3
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -24,9 +24,9 @@ test-short: deps common-test-short
24
24
VERSIONS := 1.19 1.20 1.21
25
25
generate-go-collector-test-files :
26
26
for GO_VERSION in $( VERSIONS) ; do \
27
- docker run --rm -v $(PWD ) :/workspace -w /workspace golang:$$GO_VERSION go run prometheus/gen_go_collector_metrics_set.go; \
27
+ docker run --rm -v $(PWD ) :/workspace -w /workspace golang:$$ GO_VERSION go run prometheus/gen_go_collector_metrics_set.go; \
28
28
mv -f go_collector_metrics* prometheus; \
29
- done
29
+ done
30
30
31
31
.PHONY : fmt
32
32
fmt : common-format
Original file line number Diff line number Diff line change 1
1
module github.com/jessicalins/instrumentation-practices-examples/middleware
2
2
3
- go 1.17
3
+ go 1.19
4
4
5
5
require github.com/prometheus/client_golang v1.13.1
6
6
Original file line number Diff line number Diff line change 1
1
module github.com/prometheus/client_golang
2
2
3
- go 1.17
3
+ go 1.19
4
4
5
5
require (
6
6
github.com/beorn7/perks v1.0.1
You can’t perform that action at this time.
0 commit comments