mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-23 00:46:30 +00:00
Switch back to latest version of golangci (#3527)
Reverts: https://github.com/woodpecker-ci/woodpecker/pull/3520 As we have enabled pre-commit updates in renovate now, I've increased the `autoupdate_schedule` of pre-commit to the max value (there is no way to disable it).
This commit is contained in:
parent
9c684b7a22
commit
5fb732a734
2 changed files with 2 additions and 2 deletions
|
@ -53,7 +53,7 @@ ci:
|
|||
autofix_prs: true
|
||||
autoupdate_branch: ''
|
||||
autoupdate_commit_msg: '[pre-commit.ci] pre-commit autoupdate'
|
||||
autoupdate_schedule: monthly
|
||||
autoupdate_schedule: quarterly
|
||||
# NB: hadolint not included in pre-commit.ci
|
||||
skip: [check-hooks-apply, check-useless-excludes, hadolint, prettier]
|
||||
submodules: false
|
||||
|
|
2
Makefile
2
Makefile
|
@ -127,7 +127,7 @@ check-xgo: ## Check if xgo is installed
|
|||
|
||||
install-tools: ## Install development tools
|
||||
@hash golangci-lint > /dev/null 2>&1; if [ $$? -ne 0 ]; then \
|
||||
go install github.com/golangci/golangci-lint/cmd/golangci-lint@v1.56.2 ; \
|
||||
go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest ; \
|
||||
fi ; \
|
||||
hash gofumpt > /dev/null 2>&1; if [ $$? -ne 0 ]; then \
|
||||
go install mvdan.cc/gofumpt@latest; \
|
||||
|
|
Loading…
Reference in a new issue