Skip to content

Commit f00fc07

Browse files
authored
Update CI configs to v0.11.18
Update lint scripts and CI configs.
1 parent 3c14bcb commit f00fc07

File tree

7 files changed

+6
-7
lines changed

7 files changed

+6
-7
lines changed

.golangci.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,4 +136,3 @@ issues:
136136
- path: cmd
137137
linters:
138138
- forbidigo
139-

.reuse/dep5

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ Files: README.md DESIGN.md **/README.md AUTHORS.txt renovate.json go.mod go.sum
66
Copyright: 2023 The Pion community <https://pion.ly>
77
License: MIT
88

9-
Files: testdata/fuzz/* **/testdata/fuzz/* api/*.txt
9+
Files: testdata/seed/* testdata/fuzz/* **/testdata/fuzz/* api/*.txt
1010
Copyright: 2023 The Pion community <https://pion.ly>
1111
License: CC0-1.0

cmd/stun-bench/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ func main() { //nolint:gocognit,cyclop
100100
log.Fatalf("Failed to generate transaction ID: %s", err)
101101
}
102102
} else {
103-
mathRand.Read(req.TransactionID[:]) //nolint:gosec
103+
mathRand.Read(req.TransactionID[:]) //nolint
104104
}
105105
req.Type = stun.BindingRequest
106106
req.WriteHeader()

integrity.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
package stun
55

6-
import ( //nolint:gci
6+
import (
77
"crypto/md5" //nolint:gosec
88
"crypto/sha1" //nolint:gosec
99
"errors"

internal/hmac/hmac_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
package hmac
55

6-
import ( //nolint:gci
6+
import (
77
"crypto/md5" //nolint:gosec
88
"crypto/sha1" //nolint:gosec
99
"crypto/sha256"

internal/hmac/pool.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
package hmac
55

6-
import ( //nolint:gci
6+
import (
77
"crypto/sha1" //nolint:gosec
88
"crypto/sha256"
99
"hash"

internal/hmac/pool_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
package hmac
55

6-
import ( //nolint:gci
6+
import (
77
"crypto/sha1" //nolint:gosec
88
"crypto/sha256"
99
"fmt"

0 commit comments

Comments
 (0)