summaryrefslogtreecommitdiffstats
path: root/pkg/common
diff options
context:
space:
mode:
authorEarl Warren <contact@earl-warren.org>2024-12-27 09:27:41 +0100
committerEarl Warren <contact@earl-warren.org>2024-12-30 22:11:02 +0100
commit733b6140376e4c361110146c2c278bf309bf04ab (patch)
tree3a0f3f90cfcb9a2755254fd6e8cfe31e6636e3c4 /pkg/common
parentMerge pull request 'Update golang packages to v1.22 (minor)' (#85) from renov... (diff)
downloadforgejo-act-733b6140376e4c361110146c2c278bf309bf04ab.tar.xz
forgejo-act-733b6140376e4c361110146c2c278bf309bf04ab.zip
chore(lint): fix lint errors
- upgrade to golangci-lint@v1.62.2 - make it renovate friendly - remove most frequent lint check that are not of consequence (unused args, etc.) - fix remaining lint errors - add renovate custom manager to update the Makefile variable
Diffstat (limited to 'pkg/common')
-rw-r--r--pkg/common/git/git.go2
1 files changed, 0 insertions, 2 deletions
diff --git a/pkg/common/git/git.go b/pkg/common/git/git.go
index c7ee889..1050647 100644
--- a/pkg/common/git/git.go
+++ b/pkg/common/git/git.go
@@ -291,8 +291,6 @@ func gitOptions(token string) (fetchOptions git.FetchOptions, pullOptions git.Pu
}
// NewGitCloneExecutor creates an executor to clone git repos
-//
-//nolint:gocyclo
func NewGitCloneExecutor(input NewGitCloneExecutorInput) common.Executor {
return func(ctx context.Context) error {
logger := common.Logger(ctx)