File tree Expand file tree Collapse file tree 2 files changed +3
-9
lines changed Expand file tree Collapse file tree 2 files changed +3
-9
lines changed Original file line number Diff line number Diff line change 5
5
" test " : {
6
6
" strategy " : {
7
7
" matrix " : {
8
- " go-version " : ["1.18.x", "1.22 .x"],
8
+ " go-version " : ["1.18.x", "1.23 .x"],
9
9
" os " : ["ubuntu-latest", "macos-latest", "windows-latest"]
10
10
}
11
11
},
12
12
" runs-on " : " ${{ matrix.os }}" ,
13
13
" env " : {"GOPROXY": "direct"},
14
14
" steps " : [{
15
15
" name " : " Install Go" ,
16
- " uses " : " actions/setup-go@v3 " ,
16
+ " uses " : " actions/setup-go@v4 " ,
17
17
" with " : {"go-version": "${{ matrix.go-version }}"}
18
18
}, {
19
19
" name " : " Checkout code" ,
20
- " uses " : " actions/checkout@v3 "
20
+ " uses " : " actions/checkout@v4 "
21
21
}, {
22
22
" name " : " Test" ,
23
23
" run " : " go test -race ./..."
Original file line number Diff line number Diff line change @@ -3,7 +3,6 @@ package ossfuzz
3
3
import (
4
4
"bytes"
5
5
"fmt"
6
- "strings"
7
6
8
7
"github.com/BurntSushi/toml"
9
8
)
@@ -28,11 +27,6 @@ func FuzzToml(data []byte) int {
28
27
var v2 any
29
28
_ , err = toml .Decode (buf .String (), & v2 )
30
29
if err != nil {
31
- // TODO(manunio): remove this when 1.23 lands, see #407.
32
- if strings .Contains (err .Error (), "invalid datetime" ) {
33
- return 0
34
- }
35
-
36
30
panic (fmt .Sprintf ("failed round trip: %s" , err ))
37
31
}
38
32
You can’t perform that action at this time.
0 commit comments