Skip to content

Commit

Permalink
build(deps): bump github.com/satori/go.uuid module
Browse files Browse the repository at this point in the history
The latest tagged version of the module contains the deficiency
described in satori/go.uuid#73. Advancing to
the commit where this issue was addressed.

Conflicts:
	go.mod
	internal/app/siftool/modif.go
	pkg/sif/create_test.go
  • Loading branch information
Adam Hughes authored and kmuriki committed Aug 6, 2021
1 parent d4f4c61 commit facef91
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion internal/app/siftool/modif.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import (
func New(file string) error {
id, err := uuid.NewV4()
if err != nil {
return fmt.Errorf("id generation failed: %v", err)
return err
}

cinfo := sif.CreateInfo{
Expand Down
2 changes: 1 addition & 1 deletion pkg/sif/create_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ func TestDataStructs(t *testing.T) {
func TestCreateContainer(t *testing.T) {
id, err := uuid.NewV4()
if err != nil {
t.Fatalf("id generation failed: %v", err)
t.Fatal(err)
}

// general info for the new SIF file creation
Expand Down

0 comments on commit facef91

Please sign in to comment.