aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar Abhinav Gupta <abg@uber.com> 2022-05-17 09:43:31 -0700
committerGravatar GitHub <noreply@github.com> 2022-05-17 09:43:31 -0700
commitc40da362956f3f18fdcb3a86c0b7f000f54bf909 (patch)
tree84ab07008feefdeba25194da221def0e8fefcf13 /Makefile
parent8a0c579592136da8105d54081c3f69060c4dcf71 (diff)
downloadsally-c40da362956f3f18fdcb3a86c0b7f000f54bf909.tar.gz
sally-c40da362956f3f18fdcb3a86c0b7f000f54bf909.tar.zst
sally-c40da362956f3f18fdcb3a86c0b7f000f54bf909.zip
Update dependencies (#54)
Update all dependencies, use Go 1.18 to build and test, and delete outdated `bindata` clause in Makefile (we switched to `go:embed` in #50). Other minor changes: - Fix the golint import path (it switched to golang.org/x/lint long before it was deprecated) and fix the failing lint check. (Switching from golint to revive is out of scope for this PR.) - Delete .envrc -- this was transitional for when Go modules were optional.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 1 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 1fead78..e711e05 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-GOLINT = go run github.com/golang/lint/golint
+GOLINT = go run golang.org/x/lint/golint
STATICCHECK = go run honnef.co/go/tools/cmd/staticcheck
.PHONY: all
@@ -8,9 +8,6 @@ all: test
build:
go build
-.PHONY: generate
-generate: bindata.go
-
.PHONY: install
install:
go install .