Skip to content

Commit 1cbae45

Browse files
authored
Upgrade Go & dependencies, drop unsupported Go versions (#78)
* upgrade go1.22.8, dependencies, github actions * go.mod: use toolchain go1.23.2
1 parent 94dd98d commit 1cbae45

File tree

5 files changed

+86
-547
lines changed

5 files changed

+86
-547
lines changed

.github/workflows/go.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
go: [ '1.19', '1.18' ]
15+
go: [ '1.23', '1.22' ]
1616

1717
name: Go ${{ matrix.go }} tests
1818
steps:
19-
- uses: actions/checkout@v3
19+
- uses: actions/checkout@v4
2020
- name: Setup Go
21-
uses: actions/setup-go@v3
21+
uses: actions/setup-go@v5
2222
with:
2323
go-version: ${{ matrix.go }}
2424
- name: Test

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,6 @@ The interface currently does not support streaming of large blobs. In the future
6767

6868
## API Stability
6969

70-
We support the last two stable Go versions, currently 1.17 and 1.18.
70+
We support the last two stable Go versions, currently 1.22 and 1.23.
7171

7272
From a API consumer point of view, we do not plan any backward incompatible changes before a v1.0.

go.mod

+23-28
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,40 @@
11
module github.com/PowerDNS/simpleblob
22

3-
go 1.18
3+
go 1.22
4+
5+
toolchain go1.23.2
46

57
require (
68
github.com/PowerDNS/go-tlsconfig v0.0.0-20221101135152-0956853b28df
7-
github.com/go-logr/logr v1.2.3
8-
github.com/minio/minio-go/v7 v7.0.63
9-
github.com/prometheus/client_golang v1.13.0
10-
github.com/stretchr/testify v1.8.1
9+
github.com/go-logr/logr v1.4.2
10+
github.com/minio/minio-go/v7 v7.0.78
11+
github.com/prometheus/client_golang v1.20.4
12+
github.com/stretchr/testify v1.9.0
1113
gopkg.in/yaml.v2 v2.4.0
1214
)
1315

1416
require (
1517
github.com/beorn7/perks v1.0.1 // indirect
16-
github.com/cespare/xxhash/v2 v2.1.2 // indirect
18+
github.com/cespare/xxhash/v2 v2.3.0 // indirect
1719
github.com/davecgh/go-spew v1.1.1 // indirect
1820
github.com/dustin/go-humanize v1.0.1 // indirect
19-
github.com/golang/protobuf v1.5.2 // indirect
20-
github.com/google/uuid v1.3.0 // indirect
21-
github.com/json-iterator/go v1.1.12 // indirect
22-
github.com/klauspost/compress v1.16.7 // indirect
23-
github.com/klauspost/cpuid/v2 v2.2.5 // indirect
21+
github.com/go-ini/ini v1.67.0 // indirect
22+
github.com/goccy/go-json v0.10.3 // indirect
23+
github.com/google/uuid v1.6.0 // indirect
24+
github.com/klauspost/compress v1.17.11 // indirect
25+
github.com/klauspost/cpuid/v2 v2.2.8 // indirect
2426
github.com/kr/text v0.2.0 // indirect
25-
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
2627
github.com/minio/md5-simd v1.1.2 // indirect
27-
github.com/minio/sha256-simd v1.0.1 // indirect
28-
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
29-
github.com/modern-go/reflect2 v1.0.2 // indirect
30-
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
28+
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
3129
github.com/pmezard/go-difflib v1.0.0 // indirect
32-
github.com/prometheus/client_model v0.3.0 // indirect
33-
github.com/prometheus/common v0.37.0 // indirect
34-
github.com/prometheus/procfs v0.8.0 // indirect
35-
github.com/rs/xid v1.5.0 // indirect
36-
github.com/sirupsen/logrus v1.9.3 // indirect
37-
golang.org/x/crypto v0.12.0 // indirect
38-
golang.org/x/net v0.14.0 // indirect
39-
golang.org/x/sys v0.11.0 // indirect
40-
golang.org/x/text v0.12.0 // indirect
41-
google.golang.org/protobuf v1.28.1 // indirect
42-
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
43-
gopkg.in/ini.v1 v1.67.0 // indirect
30+
github.com/prometheus/client_model v0.6.1 // indirect
31+
github.com/prometheus/common v0.55.0 // indirect
32+
github.com/prometheus/procfs v0.15.1 // indirect
33+
github.com/rs/xid v1.6.0 // indirect
34+
golang.org/x/crypto v0.28.0 // indirect
35+
golang.org/x/net v0.30.0 // indirect
36+
golang.org/x/sys v0.26.0 // indirect
37+
golang.org/x/text v0.19.0 // indirect
38+
google.golang.org/protobuf v1.34.2 // indirect
4439
gopkg.in/yaml.v3 v3.0.1 // indirect
4540
)

0 commit comments

Comments
 (0)