-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
use go 1.22 and make go 1.20.14 as minimum (#378)
- Loading branch information
Showing
8 changed files
with
27 additions
and
2,220 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,7 +21,7 @@ on: | |
pull_request: | ||
|
||
env: | ||
GO_VERSION: 1.21.3 | ||
GO_VERSION: 1.22.0 | ||
|
||
jobs: | ||
license-check: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,31 @@ | ||
module github.com/theparanoids/crypki | ||
|
||
go 1.16 | ||
go 1.20 | ||
|
||
require ( | ||
github.com/golang/mock v1.6.0 | ||
github.com/grpc-ecosystem/go-grpc-middleware v1.4.0 | ||
github.com/grpc-ecosystem/grpc-gateway/v2 v2.19.1 | ||
github.com/miekg/pkcs11 v1.1.1 | ||
golang.org/x/crypto v0.19.0 | ||
golang.org/x/tools v0.11.0 // indirect | ||
google.golang.org/genproto/googleapis/api v0.0.0-20240125205218-1f4bbc51befe | ||
google.golang.org/grpc v1.61.1 | ||
google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.3.0 | ||
google.golang.org/protobuf v1.32.0 | ||
) | ||
|
||
require ( | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/golang/protobuf v1.5.3 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/rogpeppe/go-internal v1.12.0 // indirect | ||
github.com/stretchr/testify v1.7.0 // indirect | ||
golang.org/x/mod v0.12.0 // indirect | ||
golang.org/x/net v0.20.0 // indirect | ||
golang.org/x/sys v0.17.0 // indirect | ||
golang.org/x/text v0.14.0 // indirect | ||
golang.org/x/tools v0.11.0 // indirect | ||
google.golang.org/genproto v0.0.0-20240116215550-a9fa1716bcac // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20240125205218-1f4bbc51befe // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |