diff options
author | Earl Warren <contact@earl-warren.org> | 2024-12-27 09:27:41 +0100 |
---|---|---|
committer | Earl Warren <contact@earl-warren.org> | 2024-12-30 22:11:02 +0100 |
commit | 733b6140376e4c361110146c2c278bf309bf04ab (patch) | |
tree | 3a0f3f90cfcb9a2755254fd6e8cfe31e6636e3c4 /pkg/common | |
parent | Merge pull request 'Update golang packages to v1.22 (minor)' (#85) from renov... (diff) | |
download | forgejo-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.go | 2 |
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) |