File tree Expand file tree Collapse file tree 6 files changed +7
-13
lines changed
Expand file tree Collapse file tree 6 files changed +7
-13
lines changed Original file line number Diff line number Diff line change 1616 - name : Set up Go
1717 uses : actions/setup-go@v2
1818 with :
19- go-version : ^1.18
19+ go-version : ^1.24
2020
2121 - name : Check out code
2222 uses : actions/checkout@v2
Original file line number Diff line number Diff line change 1616 uses : actions/checkout@v2
1717 - name : Install golangci-lint
1818 run : |
19- VERSION=1.62.0
19+ VERSION=1.64.8
2020 wget https://github.com/golangci/golangci-lint/releases/download/v${VERSION}/golangci-lint-${VERSION}-linux-amd64.tar.gz
2121 tar zxvf golangci-lint-${VERSION}-linux-amd64.tar.gz
2222 mv golangci-lint-${VERSION}-linux-amd64/golangci-lint .
Original file line number Diff line number Diff line change 11module github.com/zmap/zlint/v3/cmd/genTestCerts
22
3- go 1.23.0
4-
5- toolchain go1.23.6
3+ go 1.24.0
64
75replace github.com/zmap/zlint/v3 => ../../
86
Original file line number Diff line number Diff line change 11module github.com/zmap/zlint/v3/cmd/gen_test_crl
22
3- go 1.23.0
4-
5- toolchain go1.23.6
3+ go 1.24.0
64
75replace github.com/zmap/zlint/v3 => ../../
86
Original file line number Diff line number Diff line change 11module github.com/zmap/zlint/v3
22
3- go 1.23.0
4-
5- toolchain go1.23.6
3+ go 1.24.0
64
75require (
86 github.com/kr/text v0.2.0 // indirect
Original file line number Diff line number Diff line change @@ -1108,7 +1108,7 @@ func TestConfigFromFile(t *testing.T) {
11081108 A * Test
11091109 B bool
11101110 }
1111- f , err := os .CreateTemp ("" , "" )
1111+ f , err := os .CreateTemp (t . TempDir () , "" )
11121112 if err != nil {
11131113 t .Fatal (err )
11141114 }
@@ -1141,7 +1141,7 @@ B = true
11411141}
11421142
11431143func TestBadConfigFromFile (t * testing.T ) {
1144- f , err := os .CreateTemp ("" , "" )
1144+ f , err := os .CreateTemp (t . TempDir () , "" )
11451145 if err != nil {
11461146 t .Fatal (err )
11471147 }
You can’t perform that action at this time.
0 commit comments