-
Notifications
You must be signed in to change notification settings - Fork 676
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This change adds Go v1.22 to CI matrix and removes Go v1.19 and v1.20 because they will no longer receive updates. Additionally it removes the golangci-lint versions for Go v1.19 and v1.20 in Makefile. Signed-off-by: Austin Vazquez <[email protected]>
- Loading branch information
1 parent
365fa41
commit de5404a
Showing
2 changed files
with
1 addition
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -120,8 +120,6 @@ install.tools: $(TOOLS:%=.install.%) | |
.PHONY: .install.lint | ||
.install.lint: | ||
case "$$(go env GOVERSION)" in \ | ||
go1.18.*) go install github.com/golangci/golangci-lint/cmd/[email protected];; \ | ||
go1.19.*) go install github.com/golangci/golangci-lint/cmd/[email protected];; \ | ||
*) go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest;; \ | ||
esac | ||
|
||
|