update golangci-lint (#2106)
This commit is contained in:
parent
1fa53b49d4
commit
f30944a5b7
|
@ -19,7 +19,7 @@ jobs:
|
||||||
|
|
||||||
- uses: golangci/golangci-lint-action@v3
|
- uses: golangci/golangci-lint-action@v3
|
||||||
with:
|
with:
|
||||||
version: v1.52.2
|
version: v1.53.3
|
||||||
|
|
||||||
mod-tidy:
|
mod-tidy:
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-22.04
|
||||||
|
|
|
@ -7,11 +7,13 @@ linters:
|
||||||
- gocritic
|
- gocritic
|
||||||
- gofmt
|
- gofmt
|
||||||
- gofumpt
|
- gofumpt
|
||||||
- misspell
|
|
||||||
- lll
|
- lll
|
||||||
|
- misspell
|
||||||
|
- nilerr
|
||||||
- prealloc
|
- prealloc
|
||||||
- revive
|
- revive
|
||||||
- unconvert
|
- unconvert
|
||||||
|
- wastedassign
|
||||||
- whitespace
|
- whitespace
|
||||||
disable:
|
disable:
|
||||||
- errcheck
|
- errcheck
|
||||||
|
|
2
Makefile
2
Makefile
|
@ -1,5 +1,5 @@
|
||||||
BASE_IMAGE = golang:1.20-alpine3.17
|
BASE_IMAGE = golang:1.20-alpine3.17
|
||||||
LINT_IMAGE = golangci/golangci-lint:v1.52.2
|
LINT_IMAGE = golangci/golangci-lint:v1.53.3
|
||||||
NODE_IMAGE = node:16-alpine3.17
|
NODE_IMAGE = node:16-alpine3.17
|
||||||
ALPINE_IMAGE = alpine:3.17
|
ALPINE_IMAGE = alpine:3.17
|
||||||
RPI32_IMAGE = balenalib/raspberry-pi:bullseye-run
|
RPI32_IMAGE = balenalib/raspberry-pi:bullseye-run
|
||||||
|
|
|
@ -51,7 +51,7 @@ func TestRTSPSource(t *testing.T) {
|
||||||
) (*base.Response, *gortsplib.ServerStream, error) {
|
) (*base.Response, *gortsplib.ServerStream, error) {
|
||||||
err := auth.Validate(ctx.Request, "testuser", "testpass", nil, nil, "IPCAM", nonce)
|
err := auth.Validate(ctx.Request, "testuser", "testpass", nil, nil, "IPCAM", nonce)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return &base.Response{
|
return &base.Response{ //nolint:nilerr
|
||||||
StatusCode: base.StatusUnauthorized,
|
StatusCode: base.StatusUnauthorized,
|
||||||
Header: base.Header{
|
Header: base.Header{
|
||||||
"WWW-Authenticate": auth.GenerateWWWAuthenticate(nil, "IPCAM", nonce),
|
"WWW-Authenticate": auth.GenerateWWWAuthenticate(nil, "IPCAM", nonce),
|
||||||
|
@ -175,7 +175,7 @@ func TestRTSPSourceNoPassword(t *testing.T) {
|
||||||
onDescribe: func(ctx *gortsplib.ServerHandlerOnDescribeCtx) (*base.Response, *gortsplib.ServerStream, error) {
|
onDescribe: func(ctx *gortsplib.ServerHandlerOnDescribeCtx) (*base.Response, *gortsplib.ServerStream, error) {
|
||||||
err := auth.Validate(ctx.Request, "testuser", "", nil, nil, "IPCAM", nonce)
|
err := auth.Validate(ctx.Request, "testuser", "", nil, nil, "IPCAM", nonce)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return &base.Response{
|
return &base.Response{ //nolint:nilerr
|
||||||
StatusCode: base.StatusUnauthorized,
|
StatusCode: base.StatusUnauthorized,
|
||||||
Header: base.Header{
|
Header: base.Header{
|
||||||
"WWW-Authenticate": auth.GenerateWWWAuthenticate(nil, "IPCAM", nonce),
|
"WWW-Authenticate": auth.GenerateWWWAuthenticate(nil, "IPCAM", nonce),
|
||||||
|
|
|
@ -61,7 +61,7 @@ func newWebRTCOutgoingTrackVideo(medias media.Medias) (*webRTCOutgoingTrack, err
|
||||||
|
|
||||||
packets, err := encoder.Encode(tunit.OBUs, tunit.PTS)
|
packets, err := encoder.Encode(tunit.OBUs, tunit.PTS)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil
|
return nil //nolint:nilerr
|
||||||
}
|
}
|
||||||
|
|
||||||
for _, pkt := range packets {
|
for _, pkt := range packets {
|
||||||
|
@ -108,7 +108,7 @@ func newWebRTCOutgoingTrackVideo(medias media.Medias) (*webRTCOutgoingTrack, err
|
||||||
|
|
||||||
packets, err := encoder.Encode(tunit.Frame, tunit.PTS)
|
packets, err := encoder.Encode(tunit.Frame, tunit.PTS)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil
|
return nil //nolint:nilerr
|
||||||
}
|
}
|
||||||
|
|
||||||
for _, pkt := range packets {
|
for _, pkt := range packets {
|
||||||
|
@ -155,7 +155,7 @@ func newWebRTCOutgoingTrackVideo(medias media.Medias) (*webRTCOutgoingTrack, err
|
||||||
|
|
||||||
packets, err := encoder.Encode(tunit.Frame, tunit.PTS)
|
packets, err := encoder.Encode(tunit.Frame, tunit.PTS)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil
|
return nil //nolint:nilerr
|
||||||
}
|
}
|
||||||
|
|
||||||
for _, pkt := range packets {
|
for _, pkt := range packets {
|
||||||
|
@ -215,7 +215,7 @@ func newWebRTCOutgoingTrackVideo(medias media.Medias) (*webRTCOutgoingTrack, err
|
||||||
|
|
||||||
packets, err := encoder.Encode(tunit.AU, tunit.PTS)
|
packets, err := encoder.Encode(tunit.AU, tunit.PTS)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil
|
return nil //nolint:nilerr
|
||||||
}
|
}
|
||||||
|
|
||||||
for _, pkt := range packets {
|
for _, pkt := range packets {
|
||||||
|
|
Loading…
Reference in New Issue