Skip to content

Commit b366f70

Browse files
authored
Merge pull request #2 from DataWiseHQ/vr/update_go_git
update vulnerable version of go-git
2 parents 7567726 + e1ee64d commit b366f70

File tree

4 files changed

+68
-94
lines changed

4 files changed

+68
-94
lines changed

.github/workflows/build-test-workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
steps:
1212
- uses: actions/setup-go@v4
1313
with:
14-
go-version: '1.20'
14+
go-version: '1.21'
1515
- uses: actions/checkout@v3
1616
- name: Fetching dependencies
1717
run : go get -v -t -d ./...

.golangci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ run:
66
- "[\\s\\S]+_test.go$"
77
# - ".*\\.my\\.go$"
88
# - lib/bad.go
9-
go: '1.20'
9+
go: '1.21'
1010
linters:
1111
# Disable all linters.
1212
# Default: false

go.mod

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,26 @@
11
module github.com/DataWiseHQ/grule-rule-engine
22

3-
go 1.20
3+
go 1.21
44

55
require (
66
github.com/antlr/antlr4/runtime/Go/antlr v1.4.10
77
github.com/bmatcuk/doublestar v1.3.4
8-
github.com/go-git/go-billy/v5 v5.5.0
9-
github.com/go-git/go-git/v5 v5.11.0
8+
github.com/go-git/go-billy/v5 v5.6.0
9+
github.com/go-git/go-git/v5 v5.13.0
1010
github.com/google/uuid v1.3.0
1111
github.com/hyperjumptech/hyper-mux v1.1.0
1212
github.com/sirupsen/logrus v1.9.3
13-
github.com/stretchr/testify v1.8.4
13+
github.com/stretchr/testify v1.10.0
1414
go.uber.org/zap v1.25.0
15-
gopkg.in/src-d/go-billy.v4 v4.3.2
1615
)
1716

1817
require (
1918
dario.cat/mergo v1.0.0 // indirect
2019
github.com/Microsoft/go-winio v0.6.1 // indirect
2120
github.com/NYTimes/gziphandler v1.1.1 // indirect
22-
github.com/ProtonMail/go-crypto v0.0.0-20230828082145-3c4c8a2d2371 // indirect
23-
github.com/cloudflare/circl v1.3.3 // indirect
24-
github.com/cyphar/filepath-securejoin v0.2.4 // indirect
21+
github.com/ProtonMail/go-crypto v1.1.3 // indirect
22+
github.com/cloudflare/circl v1.3.7 // indirect
23+
github.com/cyphar/filepath-securejoin v0.2.5 // indirect
2524
github.com/davecgh/go-spew v1.1.1 // indirect
2625
github.com/emirpasic/gods v1.18.1 // indirect
2726
github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect
@@ -31,15 +30,16 @@ require (
3130
github.com/pjbgf/sha1cd v0.3.0 // indirect
3231
github.com/pmezard/go-difflib v1.0.0 // indirect
3332
github.com/rs/cors v1.8.0 // indirect
34-
github.com/sergi/go-diff v1.1.0 // indirect
35-
github.com/skeema/knownhosts v1.2.1 // indirect
33+
github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3 // indirect
34+
github.com/skeema/knownhosts v1.3.0 // indirect
3635
github.com/xanzy/ssh-agent v0.3.3 // indirect
3736
go.uber.org/multierr v1.10.0 // indirect
38-
golang.org/x/crypto v0.18.0 // indirect
39-
golang.org/x/mod v0.12.0 // indirect
40-
golang.org/x/net v0.19.0 // indirect
41-
golang.org/x/sys v0.16.0 // indirect
42-
golang.org/x/tools v0.13.0 // indirect
37+
golang.org/x/crypto v0.31.0 // indirect
38+
golang.org/x/mod v0.17.0 // indirect
39+
golang.org/x/net v0.33.0 // indirect
40+
golang.org/x/sync v0.10.0 // indirect
41+
golang.org/x/sys v0.28.0 // indirect
42+
golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d // indirect
4343
gopkg.in/warnings.v0 v0.1.2 // indirect
4444
gopkg.in/yaml.v3 v3.0.1 // indirect
4545
)

0 commit comments

Comments
 (0)