Skip to content
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
2 changes: 1 addition & 1 deletion examples/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ services:

doc-runner-golang:
container_name: doc-runner-golang
image: golang:1.22-alpine
image: golang:1.24-alpine
command: >
ash -c '
apk update && apk add git make build-base;
Expand Down
2 changes: 1 addition & 1 deletion examples/key/sign/sign.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ func main() {
if err != nil {
log.Println(err)
}
fmt.Printf("Hash: %+v" + hash)
fmt.Printf("Hash: %+v", hash)

signatures, err := authenticityClient.GetSignatures(signedRecord)
if err != nil {
Expand Down