Skip to content

Commit 91a8cc5

Browse files
dependency updates
1 parent c9f8626 commit 91a8cc5

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

go-mod-tidy.sh

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# clean the mod cache
2+
#go clean -modcache
3+
# set the minimum go version to use for the module
4+
go mod edit -go=1.16
5+
# add missing and remove unused modules
6+
go mod tidy
7+
# update all dependencies
8+
go get -u ./...

report/excel.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
package report
22

33
import (
4-
"github.com/360EntSecGroup-Skylar/excelize/v2"
54
"github.com/threagile/threagile/colors"
65
"github.com/threagile/threagile/model"
6+
"github.com/xuri/excelize/v2"
77
"sort"
88
"strconv"
99
"strings"

0 commit comments

Comments
 (0)