File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -29,14 +29,13 @@ jobs:
2929 export GOPATH=/home/runner/work
3030 export PATH=$PATH:$GOPATH/bin
3131 mkdir $GOPATH/src $GOPATH/pkg $GOPATH/bin
32- go install honnef.co/go/tools/cmd/staticcheck@latest
32+ go install honnef.co/go/tools/cmd/staticcheck@2020.2.1
3333 NEW=$GOPATH/src/github.com/digitalocean/go-openvswitch
3434 mkdir -p $NEW
3535 cp -r ./* $NEW
3636 cd $NEW
3737 go mod download
3838 go get golang.org/x/lint/golint
39- go get honnef.co/go/tools/cmd/staticcheck
4039 go get -d ./...
4140 echo "=========START LICENSE CHECK============"
4241 ./scripts/licensecheck.sh
Original file line number Diff line number Diff line change @@ -693,7 +693,7 @@ func (i *inPortMatch) MarshalText() ([]byte, error) {
693693
694694// GoString implements Match.
695695func (i * inPortMatch ) GoString () string {
696- return fmt .Sprintf ("ovs.InPort(%q )" , i .port )
696+ return fmt .Sprintf ("ovs.InPort(%d )" , i .port )
697697}
698698
699699// NeighborDiscoveryTarget matches packets with an IPv6 neighbor discovery target
You can’t perform that action at this time.
0 commit comments