mirror of
https://github.com/ceph/ceph-csi.git
synced 2025-06-13 02:33:34 +00:00
rebase: bump the github-dependencies group with 3 updates
Bumps the github-dependencies group with 3 updates: [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go), [github.com/gemalto/kmip-go](https://github.com/gemalto/kmip-go) and [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo). Updates `github.com/aws/aws-sdk-go` from 1.45.12 to 1.45.16 - [Release notes](https://github.com/aws/aws-sdk-go/releases) - [Commits](https://github.com/aws/aws-sdk-go/compare/v1.45.12...v1.45.16) Updates `github.com/gemalto/kmip-go` from 0.0.9 to 0.0.10 - [Release notes](https://github.com/gemalto/kmip-go/releases) - [Commits](https://github.com/gemalto/kmip-go/compare/v0.0.9...v0.0.10) Updates `github.com/onsi/ginkgo/v2` from 2.12.0 to 2.12.1 - [Release notes](https://github.com/onsi/ginkgo/releases) - [Changelog](https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md) - [Commits](https://github.com/onsi/ginkgo/compare/v2.12.0...v2.12.1) --- updated-dependencies: - dependency-name: github.com/aws/aws-sdk-go dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-dependencies - dependency-name: github.com/gemalto/kmip-go dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-dependencies - dependency-name: github.com/onsi/ginkgo/v2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
committed by
mergify[bot]
parent
6719d6497f
commit
3bbd20a1bc
68
vendor/github.com/gemalto/kmip-go/.golangci.yml
generated
vendored
68
vendor/github.com/gemalto/kmip-go/.golangci.yml
generated
vendored
@ -35,15 +35,59 @@ linters-settings:
|
||||
# minimal occurrences count to trigger, 3 by default
|
||||
min-occurrences: 3
|
||||
depguard:
|
||||
list-type: blacklist
|
||||
include-go-root: false
|
||||
packages:
|
||||
- github.com/magiconair/properties/assert
|
||||
- gopkg.in/go-playground/assert.v1
|
||||
- github.com/pborman/uuid #replace with github.com/google/uuid
|
||||
inTests:
|
||||
- github.com/davecgh/go-spew/spew
|
||||
- github.com/stretchr/testify
|
||||
# Rules to apply.
|
||||
#
|
||||
# Variables:
|
||||
# - File Variables
|
||||
# you can still use and exclamation mark ! in front of a variable to say not to use it.
|
||||
# Example !$test will match any file that is not a go test file.
|
||||
#
|
||||
# `$all` - matches all go files
|
||||
# `$test` - matches all go test files
|
||||
#
|
||||
# - Package Variables
|
||||
#
|
||||
# `$gostd` - matches all of go's standard library (Pulled from `GOROOT`)
|
||||
#
|
||||
# Default: Only allow $gostd in all files.
|
||||
rules:
|
||||
# Name of a rule.
|
||||
all:
|
||||
# List of file globs that will match this list of settings to compare against.
|
||||
# Default: $all
|
||||
files:
|
||||
- $all
|
||||
# List of allowed packages.
|
||||
# allow:
|
||||
# - $gostd
|
||||
# Packages that are not allowed where the value is a suggestion.
|
||||
deny:
|
||||
- pkg: github.com/magiconair/properties/assert
|
||||
desc: Use testify/assert package instead
|
||||
- pkg: gopkg.in/go-playground/assert.v1
|
||||
desc: Use testify/assert package instead
|
||||
- pkg: github.com/pborman/uuid
|
||||
desc: Use google/uuid package instead
|
||||
main:
|
||||
files:
|
||||
- "!$test"
|
||||
# todo need to check the usage
|
||||
- "!**authorization/conditions.go"
|
||||
- "!**yugotest/assertions.go"
|
||||
- "!**yugometrics/backendtesting/compliance.go"
|
||||
- "!**scopes/auth_scope.go"
|
||||
deny:
|
||||
- pkg: github.com/davecgh/go-spew/spew
|
||||
desc: spew is usually only used in tests
|
||||
- pkg: github.com/stretchr/testify
|
||||
desc: testify is usually only used in tests
|
||||
gomodguard:
|
||||
blocked:
|
||||
modules:
|
||||
- gopkg.in/go-playground/assert.v1:
|
||||
recommendations:
|
||||
- github.com/stretchr/testify
|
||||
reason: "testify is the test assertion framework we use"
|
||||
misspell:
|
||||
# Correct spellings using locale preferences for US or UK.
|
||||
# Default is to use a neutral variety of English.
|
||||
@ -70,15 +114,11 @@ linters:
|
||||
enable:
|
||||
# default linters
|
||||
- staticcheck
|
||||
- deadcode
|
||||
- errcheck
|
||||
- gosimple
|
||||
- govet
|
||||
- ineffassign
|
||||
- structcheck
|
||||
- unused
|
||||
- varcheck
|
||||
|
||||
# additional linters
|
||||
- asciicheck
|
||||
- bidichk
|
||||
@ -115,7 +155,7 @@ linters:
|
||||
## - goimports # checks import order. We're not using goimports
|
||||
# - gomnd # too aggressive
|
||||
- gomoddirectives
|
||||
# - gomodguard
|
||||
- gomodguard
|
||||
- goprintffuncname
|
||||
- gosec
|
||||
- grouper
|
||||
|
Reference in New Issue
Block a user