Skip to content

Commit

Permalink
update ci and fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
aajkl committed Jun 29, 2024
1 parent 5f9b836 commit c73ca4f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/golangci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ jobs:
uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v4
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'

- name: golangci-lint
uses: golangci/golangci-lint-action@v3
uses: golangci/golangci-lint-action@v6
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true'
with:
Expand Down
8 changes: 4 additions & 4 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,13 @@ require (
github.com/BurntSushi/toml v1.3.2
github.com/DATA-DOG/go-sqlmock v1.5.0
github.com/alicebob/miniredis/v2 v2.32.1
github.com/alphadose/haxmap v1.3.1
github.com/aws/aws-sdk-go v1.51.16
github.com/btcsuite/btcutil v1.0.2
github.com/cenkalti/backoff/v4 v4.2.1
github.com/cockroachdb/errors v1.11.1
github.com/dgrijalva/jwt-go v3.2.0+incompatible
github.com/duke-git/lancet v1.4.3
github.com/dustin/go-humanize v1.0.1
github.com/getsentry/sentry-go v0.23.0
github.com/gin-contrib/cors v1.4.0
github.com/gin-contrib/i18n v1.1.1
github.com/gin-contrib/sessions v1.0.0
Expand Down Expand Up @@ -48,14 +46,13 @@ require (
go.etcd.io/bbolt v1.3.8
golang.org/x/crypto v0.23.0
golang.org/x/text v0.15.0
google.golang.org/grpc v1.60.1
gopkg.in/natefinch/lumberjack.v2 v2.2.1
gopkg.in/yaml.v3 v3.0.1
)

require (
github.com/KyleBanks/depth v1.2.1 // indirect
github.com/alicebob/gopher-json v0.0.0-20230218143504-906a9b012302 // indirect
github.com/alphadose/haxmap v1.3.1 // indirect
github.com/bytedance/sonic v1.11.3 // indirect
github.com/cespare/xxhash/v2 v2.2.0 // indirect
github.com/chenzhuoyu/base64x v0.0.0-20230717121745-296ad89f973d // indirect
Expand All @@ -66,6 +63,7 @@ require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
github.com/gabriel-vasile/mimetype v1.4.3 // indirect
github.com/getsentry/sentry-go v0.23.0 // indirect
github.com/gin-contrib/sse v0.1.0 // indirect
github.com/go-logr/logr v1.4.1 // indirect
github.com/go-openapi/jsonpointer v0.21.0 // indirect
Expand Down Expand Up @@ -117,5 +115,7 @@ require (
golang.org/x/sys v0.20.0 // indirect
golang.org/x/time v0.3.0 // indirect
golang.org/x/tools v0.21.0 // indirect
google.golang.org/grpc v1.60.1 // indirect
google.golang.org/protobuf v1.33.0 // indirect
gopkg.in/natefinch/lumberjack.v2 v2.2.1 // indirect
)

0 comments on commit c73ca4f

Please sign in to comment.