Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump vault api dependancy to mitigate go-jose concerns, removes support for go1.20 #247

Merged
merged 4 commits into from
Jun 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/go-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ jobs:
strategy:
matrix:
go-version:
- '1.20'
- '1.21.x'
- '1.22.x'
permissions:
id-token: write
contents: read
Expand Down Expand Up @@ -72,8 +72,8 @@ jobs:
strategy:
matrix:
go-version:
- '1.20'
- '1.21.x'
- '1.22.x'
permissions:
id-token: write
contents: read
Expand Down Expand Up @@ -114,8 +114,8 @@ jobs:
strategy:
matrix:
go-version:
- '1.20'
- '1.21.x'
- '1.22.x'
permissions:
id-token: write
contents: read
Expand Down
26 changes: 13 additions & 13 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ require (
github.com/dylanmei/iso8601 v0.1.0 // indirect
github.com/dylanmei/winrmtest v0.0.0-20210303004826-fbc9ae56efb6
github.com/fatih/camelcase v1.0.0
github.com/fatih/color v1.14.1 // indirect
github.com/fatih/color v1.16.0 // indirect
github.com/fatih/structtag v1.2.0
github.com/gofrs/flock v0.8.1
github.com/gofrs/uuid v4.0.0+incompatible // indirect
Expand All @@ -30,20 +30,20 @@ require (
github.com/hashicorp/go-getter/gcs/v2 v2.2.2
github.com/hashicorp/go-getter/s3/v2 v2.2.2
github.com/hashicorp/go-getter/v2 v2.2.2
github.com/hashicorp/go-hclog v1.5.0 // indirect
github.com/hashicorp/go-hclog v1.6.3 // indirect
github.com/hashicorp/go-immutable-radix v1.3.1 // indirect
github.com/hashicorp/go-multierror v1.1.1
github.com/hashicorp/go-retryablehttp v0.7.0 // indirect
github.com/hashicorp/go-retryablehttp v0.7.6 // indirect
github.com/hashicorp/go-version v1.6.0
github.com/hashicorp/golang-lru v0.5.4 // indirect
github.com/hashicorp/hcl/v2 v2.19.1
github.com/hashicorp/vault/api v1.10.0
github.com/hashicorp/vault/api v1.14.0
github.com/hashicorp/yamux v0.1.1
github.com/imdario/mergo v0.3.12 // indirect
github.com/jehiah/go-strftime v0.0.0-20171201141054-1d33003b3869
github.com/masterzen/simplexml v0.0.0-20190410153822-31eea3082786 // indirect
github.com/masterzen/winrm v0.0.0-20210623064412-3b76017826b0
github.com/mattn/go-isatty v0.0.17 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mitchellh/cli v1.1.5
github.com/mitchellh/go-fs v0.0.0-20180402235330-b7b9ca407fff
github.com/mitchellh/go-testing-interface v1.14.1 // indirect
Expand All @@ -57,17 +57,17 @@ require (
github.com/pkg/errors v0.9.1
github.com/pkg/sftp v1.13.2
github.com/ryanuber/go-glob v1.0.0
github.com/stretchr/testify v1.8.3
github.com/stretchr/testify v1.8.4
github.com/ugorji/go/codec v1.2.6
github.com/ulikunitz/xz v0.5.10 // indirect
golang.org/x/crypto v0.17.0
golang.org/x/crypto v0.23.0
golang.org/x/mobile v0.0.0-20210901025245-1fde1d6c3ca1
golang.org/x/mod v0.13.0
golang.org/x/net v0.17.0
golang.org/x/net v0.25.0
golang.org/x/sync v0.5.0
golang.org/x/sys v0.15.0 // indirect
golang.org/x/term v0.15.0
golang.org/x/text v0.14.0 // indirect
golang.org/x/sys v0.20.0 // indirect
golang.org/x/term v0.20.0
golang.org/x/text v0.15.0 // indirect
golang.org/x/time v0.3.0 // indirect
golang.org/x/tools v0.14.0
google.golang.org/api v0.150.0 // indirect
Expand All @@ -87,7 +87,7 @@ require (
github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d // indirect
github.com/bgentry/speakeasy v0.1.0 // indirect
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
github.com/go-jose/go-jose/v3 v3.0.0 // indirect
github.com/go-jose/go-jose/v4 v4.0.1 // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/google/s2a-go v0.1.7 // indirect
github.com/googleapis/enterprise-certificate-proxy v0.3.2 // indirect
Expand Down Expand Up @@ -123,6 +123,6 @@ require (
google.golang.org/protobuf v1.31.0 // indirect
)

go 1.20
go 1.21

retract v0.5.0 // v0.5.0 of the SDK was broken because of the replace statement for go-cty
Loading
Loading