Skip to content

Commit b663d8f

Browse files
dependabot[bot]phsym
authored andcommitted
build(deps): bump github.com/ovh/okms-sdk-go from 0.3.2 to 0.4.1
Bumps [github.com/ovh/okms-sdk-go](https://github.com/ovh/okms-sdk-go) from 0.3.2 to 0.4.1. - [Release notes](https://github.com/ovh/okms-sdk-go/releases) - [Commits](ovh/okms-sdk-go@v0.3.2...v0.4.1) --- updated-dependencies: - dependency-name: github.com/ovh/okms-sdk-go dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Signed-off-by: Pierre-Henri Symoneaux <[email protected]>
1 parent 8c732b4 commit b663d8f

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

cmd/okms/keys/sign.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ In both cases, DATA can be either plain text, a '-' to read from stdin, or a fil
4141
signCmd.Run = func(cmd *cobra.Command, args []string) {
4242
data := readDigest(params.signatureAlgorithm, args[1], "Signing", noProgress)
4343
keyId := exit.OnErr2(uuid.Parse(args[0]))
44-
signature := exit.OnErr2(common.Client().Sign(cmd.Context(), keyId, params.signatureAlgorithm.Alg(), true, data))
44+
signature := exit.OnErr2(common.Client().Sign(cmd.Context(), keyId, nil, params.signatureAlgorithm.Alg(), true, data))
4545
if cmd.Flag("output").Value.String() == string(flagsmgmt.JSON_OUTPUT_FORMAT) {
4646
output.JsonPrint(signature)
4747
} else {

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ require (
1010
github.com/knadh/koanf/providers/file v1.1.2
1111
github.com/knadh/koanf/v2 v2.1.2
1212
github.com/olekukonko/tablewriter v0.0.5
13-
github.com/ovh/okms-sdk-go v0.3.2
13+
github.com/ovh/okms-sdk-go v0.4.1
1414
github.com/pterm/pterm v0.12.80
1515
github.com/schollz/progressbar/v3 v3.17.1
1616
github.com/spf13/cobra v1.8.1

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,8 +102,8 @@ github.com/oapi-codegen/runtime v1.1.1 h1:EXLHh0DXIJnWhdRPN2w4MXAzFyE4CskzhNLUmt
102102
github.com/oapi-codegen/runtime v1.1.1/go.mod h1:SK9X900oXmPWilYR5/WKPzt3Kqxn/uS/+lbpREv+eCg=
103103
github.com/olekukonko/tablewriter v0.0.5 h1:P2Ga83D34wi1o9J6Wh1mRuqd4mF/x/lgBS7N7AbDhec=
104104
github.com/olekukonko/tablewriter v0.0.5/go.mod h1:hPp6KlRPjbx+hW8ykQs1w3UBbZlj6HuIJcUGPhkA7kY=
105-
github.com/ovh/okms-sdk-go v0.3.2 h1:1P/JCxwzYPTlYzuBF/OQGrJ5UkgmlJ5gpNZ+j0FJtdY=
106-
github.com/ovh/okms-sdk-go v0.3.2/go.mod h1:0OSfDfS3j5qYp6irBzVHXIWJsVVXLCI9ZnNYy2Z4Li8=
105+
github.com/ovh/okms-sdk-go v0.4.1 h1:nB2dMN0MPL++Jnad7UGruaj9SpJMM3E0K/wEVONOs2A=
106+
github.com/ovh/okms-sdk-go v0.4.1/go.mod h1:A9fKarqnmxqu6ZOo4rlrjmYQrjKNCOJWdT3BPuOETnw=
107107
github.com/pkg/diff v0.0.0-20210226163009-20ebb0f2a09e/go.mod h1:pJLUxLENpZxwdsKMEsNbx1VGcRFpLqf3715MtcvvzbA=
108108
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
109109
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 h1:Jamvg5psRIccs7FGNTlIRMkT8wgtp5eCXdBlqhYGL6U=

0 commit comments

Comments
 (0)