Skip to content

Commit 41a865b

Browse files
committed
go 1.24
1 parent d0da8fc commit 41a865b

File tree

4 files changed

+54
-157
lines changed

4 files changed

+54
-157
lines changed

Diff for: .github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Set up Go
1616
uses: actions/setup-go@v2
1717
with:
18-
go-version: 1.20
18+
go-version: "1.24"
1919

2020
- name: Run GoReleaser
2121
uses: goreleaser/goreleaser-action@v2

Diff for: .github/workflows/test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
test:
1212
strategy:
1313
matrix:
14-
go-version: [1.20.x]
14+
go-version: [1.24.x]
1515
platform: [ubuntu-latest, macos-latest, windows-latest]
1616
runs-on: ${{ matrix.platform }}
1717
steps:

Diff for: go.mod

+14-13
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,27 @@
11
module github.com/MauveSoftware/senderscore_exporter
22

3-
go 1.20
3+
go 1.24
44

55
require (
66
github.com/pkg/errors v0.9.1
7-
github.com/prometheus/client_golang v1.11.1
8-
github.com/sirupsen/logrus v1.8.1
9-
github.com/stretchr/testify v1.7.0
7+
github.com/prometheus/client_golang v1.21.0
8+
github.com/sirupsen/logrus v1.9.3
9+
github.com/stretchr/testify v1.10.0
1010
gopkg.in/yaml.v2 v2.4.0
1111
)
1212

1313
require (
1414
github.com/beorn7/perks v1.0.1 // indirect
15-
github.com/cespare/xxhash/v2 v2.1.1 // indirect
15+
github.com/cespare/xxhash/v2 v2.3.0 // indirect
1616
github.com/davecgh/go-spew v1.1.1 // indirect
17-
github.com/golang/protobuf v1.5.0 // indirect
18-
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
17+
github.com/klauspost/compress v1.18.0 // indirect
18+
github.com/kr/text v0.2.0 // indirect
19+
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
1920
github.com/pmezard/go-difflib v1.0.0 // indirect
20-
github.com/prometheus/client_model v0.2.0 // indirect
21-
github.com/prometheus/common v0.26.0 // indirect
22-
github.com/prometheus/procfs v0.6.0 // indirect
23-
golang.org/x/sys v0.1.0 // indirect
24-
google.golang.org/protobuf v1.33.0 // indirect
25-
gopkg.in/yaml.v3 v3.0.0 // indirect
21+
github.com/prometheus/client_model v0.6.1 // indirect
22+
github.com/prometheus/common v0.62.0 // indirect
23+
github.com/prometheus/procfs v0.15.1 // indirect
24+
golang.org/x/sys v0.30.0 // indirect
25+
google.golang.org/protobuf v1.36.5 // indirect
26+
gopkg.in/yaml.v3 v3.0.1 // indirect
2627
)

0 commit comments

Comments
 (0)