Skip to content

Commit 7e4b1b1

Browse files
authored
Merge pull request #42 from uswitch/airship-4632/update-libs
Airship 4632: update libs
2 parents dad6eb7 + ae6fa7c commit 7e4b1b1

File tree

3 files changed

+53
-65
lines changed

3 files changed

+53
-65
lines changed

.github/workflows/push.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
name: push
22
on: push
33
permissions:
4-
contents: read
4+
contents: read
55
jobs:
66
test:
77
runs-on: ubuntu-latest
88
steps:
99
- uses: actions/checkout@v4
1010
- uses: actions/setup-go@v5
1111
with:
12-
go-version: "1.24"
12+
go-version: "1.25"
1313
- run: go test -v -cover $(go list ./... | grep -v /vendor)
1414
build:
1515
runs-on: ubuntu-latest

go.mod

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
module github.com/uswitch/vault-creds
22

3-
go 1.24.0
4-
5-
toolchain go1.24.1
3+
go 1.25.0
64

75
require (
86
github.com/cenkalti/backoff v2.2.1+incompatible
9-
github.com/hashicorp/vault/api v1.9.2
10-
github.com/hashicorp/vault/sdk v0.9.1
7+
github.com/hashicorp/vault/api v1.16.0
8+
github.com/hashicorp/vault/sdk v0.20.0
119
github.com/prometheus/client_golang v1.23.2
1210
github.com/sirupsen/logrus v1.9.3
1311
gopkg.in/alecthomas/kingpin.v2 v2.2.6
@@ -21,32 +19,35 @@ require (
2119
github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751 // indirect
2220
github.com/alecthomas/units v0.0.0-20211218093645-b94a6e3cc137 // indirect
2321
github.com/beorn7/perks v1.0.1 // indirect
24-
github.com/cenkalti/backoff/v3 v3.2.2 // indirect
22+
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
2523
github.com/cespare/xxhash/v2 v2.3.0 // indirect
2624
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
2725
github.com/emicklei/go-restful/v3 v3.11.0 // indirect
2826
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
29-
github.com/go-jose/go-jose/v3 v3.0.0 // indirect
27+
github.com/go-jose/go-jose/v4 v4.0.5 // indirect
3028
github.com/go-logr/logr v1.4.2 // indirect
3129
github.com/go-openapi/jsonpointer v0.21.0 // indirect
3230
github.com/go-openapi/jsonreference v0.20.2 // indirect
3331
github.com/go-openapi/swag v0.23.0 // indirect
3432
github.com/gogo/protobuf v1.3.2 // indirect
3533
github.com/golang/protobuf v1.5.4 // indirect
3634
github.com/golang/snappy v0.0.4 // indirect
35+
github.com/google/certificate-transparency-go v1.3.1 // indirect
3736
github.com/google/gnostic-models v0.6.8 // indirect
3837
github.com/google/go-cmp v0.7.0 // indirect
3938
github.com/google/gofuzz v1.2.0 // indirect
4039
github.com/google/uuid v1.6.0 // indirect
4140
github.com/hashicorp/errwrap v1.1.0 // indirect
4241
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
42+
github.com/hashicorp/go-hmac-drbg v0.0.0-20210916214228-a6e5a68489f6 // indirect
4343
github.com/hashicorp/go-multierror v1.1.1 // indirect
44-
github.com/hashicorp/go-retryablehttp v0.7.1 // indirect
44+
github.com/hashicorp/go-retryablehttp v0.7.8 // indirect
4545
github.com/hashicorp/go-rootcerts v1.0.2 // indirect
46-
github.com/hashicorp/go-secure-stdlib/parseutil v0.1.7 // indirect
46+
github.com/hashicorp/go-secure-stdlib/cryptoutil v0.1.1 // indirect
47+
github.com/hashicorp/go-secure-stdlib/parseutil v0.2.0 // indirect
4748
github.com/hashicorp/go-secure-stdlib/strutil v0.1.2 // indirect
48-
github.com/hashicorp/go-sockaddr v1.0.2 // indirect
49-
github.com/hashicorp/hcl v1.0.1-vault-5 // indirect
49+
github.com/hashicorp/go-sockaddr v1.0.7 // indirect
50+
github.com/hashicorp/hcl v1.0.1-vault-7 // indirect
5051
github.com/josharian/intern v1.0.0 // indirect
5152
github.com/json-iterator/go v1.1.12 // indirect
5253
github.com/mailru/easyjson v0.7.7 // indirect
@@ -69,7 +70,7 @@ require (
6970
golang.org/x/sys v0.35.0 // indirect
7071
golang.org/x/term v0.34.0 // indirect
7172
golang.org/x/text v0.28.0 // indirect
72-
golang.org/x/time v0.7.0 // indirect
73+
golang.org/x/time v0.10.0 // indirect
7374
google.golang.org/protobuf v1.36.8 // indirect
7475
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
7576
gopkg.in/inf.v0 v0.9.1 // indirect

0 commit comments

Comments
 (0)