Skip to content

Commit

Permalink
fix: versions in makefile and workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Huck committed Aug 26, 2024
1 parent 26de2c6 commit e449ad6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on: [ push ]

env:
GO_VERSION: '1.23'
GOLANGCI_VERSION: 'v6.1.0'
GOLANGCI_VERSION: 'v1.60'
STATICCHECK_VERSION: '2024.1.1'

permissions:
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ endif
lint: lint-go lint-yaml lint-dockerfile ## Run all linters

lint-go: ## Lint all GO files
$(DOCKER) run --rm -it -v $(PWD):/app -w /app $(GOLANGCI_LINT_IMAGE) golangci-lint run --deadline=66s --go "1.20"
$(DOCKER) run --rm -it -v $(PWD):/app -w /app $(GOLANGCI_LINT_IMAGE) golangci-lint run --go "1.23"

lint-yaml: ## Lint all YAML files
$(DOCKER) run --rm -it -v $(PWD):/data $(YAMLLINT_IMAGE) -f parsable $(YAMLFILES)
Expand Down

0 comments on commit e449ad6

Please sign in to comment.