File tree 2 files changed +2
-3
lines changed
2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -29,14 +29,13 @@ jobs:
29
29
export GOPATH=/home/runner/work
30
30
export PATH=$PATH:$GOPATH/bin
31
31
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
33
33
NEW=$GOPATH/src/github.com/digitalocean/go-openvswitch
34
34
mkdir -p $NEW
35
35
cp -r ./* $NEW
36
36
cd $NEW
37
37
go mod download
38
38
go get golang.org/x/lint/golint
39
- go get honnef.co/go/tools/cmd/staticcheck
40
39
go get -d ./...
41
40
echo "=========START LICENSE CHECK============"
42
41
./scripts/licensecheck.sh
Original file line number Diff line number Diff line change @@ -693,7 +693,7 @@ func (i *inPortMatch) MarshalText() ([]byte, error) {
693
693
694
694
// GoString implements Match.
695
695
func (i * inPortMatch ) GoString () string {
696
- return fmt .Sprintf ("ovs.InPort(%q )" , i .port )
696
+ return fmt .Sprintf ("ovs.InPort(%d )" , i .port )
697
697
}
698
698
699
699
// NeighborDiscoveryTarget matches packets with an IPv6 neighbor discovery target
You can’t perform that action at this time.
0 commit comments